up vote 18 down vote favorite
16
share [g+] share [fb]

Debugging a Firefox addon is a slow process: (1) edit source code in a JS editor (2) package into XPI using a build script (3) drag into Firefox to install (4) restart Firefox (5) open the JavaScript Debugger

Can we speeden up the process? Like install it into Firefox without a restart, or configure the build script to install it into Firefox as well?

link|improve this question

feedback

4 Answers

up vote 25 down vote accepted

You'll want to locate your profile folder. Once you find it, go into the folder called 'extensions', and then locate the folder for the add-on you are working on. Replace that folder with a file of the same name, and inside the file place the full path to your source directory of the add-on. As long as you don't use jar files inside your add-on, you will no longer have to rebuild (this is covered in a bit more depth here).

Additionally, you'll want to set nglayout.debug.disable_xul_cache to true. For edits to xul or js files, you'll just have to open up a new window to see your changes instead of restarting the application. There are other preferences here that you may find useful as well.

link|improve this answer
+1 Good to know that restarting is not necessary... – Stobor Jul 3 '09 at 14:07
Oh, wow, I had no idea about disable_xul_cache. This made my day. – lwburk Mar 3 '11 at 20:49
This works with opening new window. Is there a way to make it work with opening new tab? – xralf Nov 28 '11 at 20:54
1  
@xralf: basically no. The code in browser.xul overlay is loaded in each window; to load updated code into existing window Firefox would need to first "unload" your code which is impossible^W an unsolved problem. On the other hand, if you're changing code that runs in a document loaded in the tab, it will be reloaded with the tab, just like regular web pages. You could look into the Addon SDK, which has promising infrastructure for creating unloadable extensions, or if you're just writing a content script, even something like a Greasemonkey would be a good start. – Nickolay Nov 28 '11 at 22:35
@Nickolay OK, I found out that it's a good speedup in development, only because I don't have to rebuild. – xralf Nov 29 '11 at 9:07
feedback

i use Netbeans with the Foxbeans Plugin for addon development, there you just press the "run button", and firefox starts up with the addon installed (into a test profile). maybe you should give this a try!

link|improve this answer
feedback

You need the "edit source" and "restart firefox" steps; they can't be removed from the process...

When you install the addon, the javascript ends up on disk, in your firefox profile. If you edit it in there, and restart firefox, the new stuff will be picked up. When you're done, create the xpi from the files in your profile.

link|improve this answer
Great idea! Smarty. – Jenko Jul 3 '09 at 4:42
you don't need the 'restart firefox' step. if you install the extension developer addon there is an option to 'reload chrome'. you can add your own little button to the toolbar to do it (check the extension source). – nikcub Aug 27 '11 at 10:41
@nikcub: That's a handy tip, thanks! – Stobor Aug 28 '11 at 2:32
feedback

http://simplygenius.com/2005/08/debugging-firefox-mozilla-extensions_25.html contains a good description of debugging FF extensions in venkman

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.