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.
Asked
Active
Viewed 226 times
1
-
You seem to have answered your own question. – Neil Mar 15 '11 at 22:04
-
@neil so u think that is possible??? – Divya Mar 16 '11 at 13:19
-
An extension can do almost anything a user can do, however I don't have specific enough information as to what you want done to suggest how it can be done. – Neil Mar 16 '11 at 21:39
1 Answers
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