views:

131

answers:

2

I would like develop on add-on for Firefox , which combine with other available add-on's and make new add-on which providing new features + existing add on feature tooo.

+1  A: 

The question is unclear, but here is some information from Mozilla.

How to develop a Firefox extension

and

Developing Mozilla addons

JTA
i agree with this .. But i am planning to develop the a new add-on , along with already existing add-on providing new features for my own purpose.
joe
+1  A: 

You will find the code of all installed extensions in the firefox profile folder. In my vista machine, it is located at C:\Users\<ur name>\appdata\Roaming\Mozilla\Firefox\Profiles\<randomstring>.default\extensions\

Unzip the jars and learn the code, edit as per your needs and restart firefox. Remember that when firefox automatically updates the extension, ur changes will be overriden. If something goes wrong, start firefox from cmd with -P switch to create a new profile or goto safe mode using firefox -safe-mode and uninstall and reinstall the extension from its website.

Amarghosh