I wrote a Firefox extension (MyPlugin) that adds some features to another Firefox extension (MainExtension). I want to put it the Mozilla Add-ons page, but I'd to just check first about the best way to structure such an extension.
Currently, I overlay MainExtension's xul with MyPlugin's xul in chrome.manifest. In MyPlugin's xul, a tag calls a .js file which defines MainExtension.MyPlugin and all of its methods which can be called by elements of the overlay.
Is that setup okay on its own? When I first tried to upload the plugin to the Mozilla Add-ons page, I discovered that the "requires" element of install.rdf is no longer supported. I had been thinking that that would take care of checking that MainExtension is actually installed. Should I put in any error checking in my plugin to make sure that MainExtension is installed? I think that right now the overlay line in chrome.manifest will just fail if MainExtension is not installed and then nothing else will happen, which seems fine. Functionally, I don't plan on having the plugin installed without the main extension, so this should not be an issue, but since I want to post the extension where other people can download it I want to make sure I am not creating any problems for them (and I'm not that familiar with Firefox extension structure -- mostly I put mine together by looking at other published extensions).