如何编写 IntelliJ IDEA 插件?
IDEA有很多插件可以使用。即 IDEtalk
是我使用的其中之一。如何编写一个仅连接到互联网并显示网页的简单插件? (不需要地址栏,但这不是问题)。我希望我的插件快捷方式按钮位于我的 IDE 中,如 IDEtalk、Commander、Maven 项目等。
有什么想法吗?
IDEA has many plugins to use. I.e. IDEtalk
is one of them which I use. How can I code a simple plugin that just connects to Internet and shows a web page? (no need for an address bar but it is not a problem to be). I want my plugin's shortcut's button locate at my IDE as like IDEtalk, Commander, Maven Projects etc
.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
JetBrains 网站上有一个创建您的第一个插件指南。它涵盖了从插件创建到部署到插件存储库所需的所有步骤。
您可能还想查看一个简单插件的源代码,例如 Twitter 集成插件我最近实施了。或者检查一个更复杂的像这样一个。
There is a Creating Your First Plugin guide on JetBrains web site. It covers all the needed steps from plugin creation to deployment to the plugin repository.
You might also want take a look in the source code of a simple plugin like Twitter Integration Plugin which I recently implemented. Or check a more complex one like this one.
检查文档以及<中提供的其他插件的源代码社区版的 href="http://git.jetbrains.org/" rel="noreferrer">公共 git 存储库。
Check the documentation and the source code of the other plug-ins available in the public git repository of the Community Edition.