How to write an IntelliJ IDEA plugin?

IDEA has many plugins to use. That is, IDEtalk is one of them that I use. How can I encode a simple plugin that just connects to the Internet and displays a web page? (there is no need for an address bar, but that is not a problem). I want my plugin quick access button in my IDE as IDEtalk, Commander, Maven Projects etc

Any ideas?

+8
source share
2 answers

Check the documentation and source code of other plugins available in the git Community Edition public repository .

+5
source

The JetBrains website has a guide on β€œ Creating the First Plugin” . It covers all the necessary steps from creating a plugin to deploying it to the plugin repository.

You can also take a look at simple open source plugins on GitHub, such as the Twitter integration plugin I recently implemented.

0
source

All Articles