Here's how to check if Firebug is installed by checking if a firebug image exists: http://webdevwonders.com/detecting-firefox-add-ons/
But it looks like it is a bit dated because the images it uses no longer exist in firebug.
firebug chrome.manifest as follows:
content firebug content/firebug/ contentaccessible=yes ...
but in the whole addon I find only one png, and it is placed in the root folder of the addon. But other content is available, for example: chrome://firebug/content/trace.js
Ho
So in gerneral:
How to make available an image that is inside the Firefox Addon SDK?
I am programming an addon and I want to make the ok.png image available to all javascripts in Firefox.
I added an image to the data folder and added chrome.manifest
content response-timeout-24-hours data/ content response-timeout-24-hours data/ contentaccessible=yes
But there is no way to call it through a url like
chrome:
How do the paths connect? which is relative to which?
rubo77
source share