Matthias
Matthias

Reputation: 7521

Which Browser/IDE for rapid add-on development/prototyping?

I'd like to develop an extension for a browser which does the following.

Prerequisite: Text has been selected, add-on has been triggered (e.g. by click in context menu)

Writing a Firefox add-on became quite annoying since I haven't found a proper documentation and IDE (with a handy build process).

Which Browser/IDE combination do you recommend for rapid add-on development/prototyping?

Upvotes: 0

Views: 376

Answers (1)

Mohamed Mansour
Mohamed Mansour

Reputation: 40169

For Google Chrome, you use web technologies to create extensions. (AFAIK Firefox is the same thing). The documentation for Google Chrome Extensions is documented pretty well: http://code.google.com/chrome/extensions/index.html

For the case you have mentioned, I have answered another user on how to capture selected text and send them to a service with a working example that you can learn from if you want:

Chrome Extension: how to capture selected text and send to a web service

Regarding the tools that you can use, it depends on what your comfortable with. Personally, I just use an editor that has syntax hilighting such as VIM, Notepad2, etc. Some people use dreamweaver, emacs, notepad, etc. At the end it all matters on your taste.

Good luck!

Upvotes: 1

Related Questions