1

I am working with firefox extensions. I want an option of enabling other extension in the options dialog box. this will depend on users choice. Like for doing some work there are 3 extensions user has. I would like my extension to have an option of asking user which extension outta the three he wants to enable. I guess all my extension would need to know is the preference settings of others.

Federico klez Culloca
  • 26,308
  • 17
  • 56
  • 95
Divya
  • 83
  • 1
  • 6

1 Answers1

1

Take a look at the following links.
https://developer.mozilla.org/en/Toolkit_API/FUEL https://developer.mozilla.org/en/Toolkit_API/extIExtensions https://developer.mozilla.org/en/Toolkit_API/extIExtension

Can't Tell
  • 12,714
  • 9
  • 63
  • 91
  • Note that the APIs relating to addon management changed between Firefox 3.6 and Firefox 4, so if you want to remain compatible with both versions, you'll need to write some of your code in two different ways. – Tyler Mar 26 '11 at 16:00