Writing a Firefox extension
From AIRWiki
Revision as of 17:27, 10 March 2008 by DavideEynard (Talk | contribs)
Links
- http://roachfiend.com/archives/2004/12/08/how-to-create-firefox-extensions/
- http://developer.mozilla.org/en/docs/Building_an_Extension
- http://kb.mozillazine.org/Extension_development
- http://www.bolinfest.com/firefox/build.html (a page with links to other tutorials)
- http://www.rietta.com/firefox/Tutorial/overview.html
- http://diveintogreasemonkey.org/toc/ (if you want to use greasemonkey)
Hints
- This is a shell script that can be used to automatically package the extension in one xpi file:
rm extension.xpi mkdir -p build/chrome cd chrome/extension zip -r extension.jar . mv extension.jar ../../build/chrome cd ../.. cp install.* build cd build zip -r extension.xpi . mv extension.xpi .. cd .. rm -rf build