How to stop my firefox extension which interferes other extension?

Posted by ccppjava on Stack Overflow See other posts from Stack Overflow or by ccppjava
Published on 2010-06-10T11:00:05Z Indexed on 2010/06/10 18:12 UTC
Read the original article Hit count: 349

Filed under:
|

Hi,

I have tried very hard to make my extension as simple as possible, it now do not contain any skin/css, it just have 'statusbar' in one single 'overlay'.

The issue is that when installed, it hides the top three icon of 'all-in-one toolbar' extension of my firefox 3.6.3.

On other two machine which do not have 'all-in-one toolbar', it hide all the icons of the web-development toolbar!

chrome.manifest

content     stackoverflow    content/
content     stackoverflow    content/ contentaccessible=yes

overlay chrome://browser/content/browser.xul chrome://stackoverflow/content/browser.xul

locale  stackoverflow   en-US   locale/en-US/

browser.xul

<overlay id="dch-browser-overlay" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
        <script type="application/x-javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"/>
        <script src="stackoverflow.js" />

        <statusbar id="status-bar">
            <statusbarpanel id="stackoverflow-status-bar-icon" class="statusbarpanel-iconic" src="chrome://stackoverflow/content/icon_small.png" tooltiptext="&runstackoverflow;" onclick="stackoverflow.run()" />
        </statusbar>
</overlay>

I have tried very hard to simplify the extension to find the reason, but failed, any suggestion/ideas would be welcome.

thx.

© Stack Overflow or respective owner

Related posts about firefox

Related posts about firefox-extension