I am developing an extension in Firefox. I want to load a simple javascript module to my xbl file. I have followed the instructions in here but I don't get any results. In fact when I call the method inside the handler it doesn't execute.
This is my file structure for extensions
-Magic/chrome/urltooltip/content/(browse.xbl, options.xul, browser.css)
-Magic/modules/(test.js)
I have registered resource in chrome manifest: resource app chrome://modules/test.js or resource gre chrome://modules/test.js it doesn't work.
in the xbl file I imported the file like this:
Components.utils.import(resource://app|gre/modules/test.js)
I don't know what else to do.