I am working on updating the Greasemonkey compiler for Firefox batch extensions. I think the source version was for Firefox version 3.6 and Greasemonkey version 0.7.20070607.0, and the source code is on GitHub here . I will work on my update here .
I am trying to figure out what are the current requirements for Firefox 9/10 extensions so that I can make sure that I am creating the appropriate file structure.
Does anyone know if the following file structure is current:
MyExt/ chrome/ chrome/chromeFiles/ chrome/chromeFiles/content/ MyExt.js defaults/ defaults/preferences/ prefs.js chrome.manifest install.rdf
The original compiler outputs this for a Greasemonkey script that does not modify the Chrome browser:
MyExt/ chrome/ content/ MyExt.js prefs.js compiler.js xmlhttprequester.js chrome.manifest install.rdf
The next step is to make sure that the Greasemonkey code that the compiler uses is current, but I want my output goals to be cleared first.
source share