How do I pass data and messages between 2 Firefox Add-Ons (the way Google Chrome does it, here)?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

All Firefox add-ons share the same global scope when you do an overlay (which essentially every add-on uses). You just need to create some shared object to pass data back and forth on.

link|improve this answer
Thanks so much! – Chetan May 19 '10 at 22:27
1  
This works but adding to the global namespace is probably not the best strategy. I would say a better approach would be to use JavaScript modules (firefox 3) to create a singleton. See here developer.mozilla.org/en/Using_JavaScript_code_modules – flpmor May 20 '10 at 13:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.