What are some resources for getting started writing a Firefox Addon? Is there an API guide somewhere? Is there a getting started tutorial somewhere? Is there a developer discussion board somewhere?

link|improve this question

77% accept rate
feedback

6 Answers

up vote 33 down vote accepted

We tried to make http://developer.mozilla.org/en/Extensions answer all those questions. The first three links in the documentation section are about getting started (that includes Adam's link). The newsgroup and the irc channel in the Community section are the official discussion boards.

Mozilla is very complex, so any kind of API guide would be overwhelming and hard to write. So your best bet is to check the code snippets page (also linked from the MDC Extensions page), then search MDC/google, then ask in the forums.

link|improve this answer
feedback

Here's the official starter page from Mozilla for writing your first extension. http://developer.mozilla.org/en/Building_an_Extension

link|improve this answer
feedback

The official page listed above is good, but this is the most useful page I have found to get started: http://blog.mozilla.com/addons/2009/01/28/how-to-develop-a-firefox-extension/

And I found starting with an extension generated from the Add-on Builder to be a great start also. You go right to tweaking JavaScript and seeing what happens: https://addons.mozilla.org/en-US/developers/tools/builder

You are also really going to want to be able to debug, you have two choices for that: ChromeBug - Which gives you FireBug for Firefox Extensions. WebStorm, but you need to use the early-access version and it currently requires a patch I wrote.

link|improve this answer
feedback

This is a great resource to start learning how to build a FireFox extension:
How to create Firefox extensions

This is an awesome tutorial and will covers most type of extensions.

Edit: Updated link to use archived copy since original page no longer exists

link|improve this answer
link is broken. – SpoiledTechie.com Jan 1 at 21:08
feedback

I found greasemonkey to be a great starting point... I used it to create some functionality for a site, then I used this script compiler to turn my script into a working add-on. Of course it's machine generated... but it's very few files and pretty easy to understand. Just unzip the .xpi and tinker away.

link|improve this answer
feedback

This has the best solutions: https://developer.mozilla.org/en/Extensions but you can try greasemonkey script compiler

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.