views:

49

answers:

1

I wrote a firefox extension which simply re-formats a page using some JQuery. But, it's interfering with another extension that places a button on the header panel of the browser. Now that button doesn't display. Can some one point me in the right direction as to when this happens. This is my first fire-fox extension.


Update:

The problem is actually being caused by the JQuery source file.

This is a known issue when using JQuery in the overlay.

+1  A: 

Your update doesn't include valid chrome.manifest lines. Also, your original style line was totally wrong, and likely the cause of your problem. You should review this page which specifies the syntax to see how this should have been done.

sdwilsh
Thanks for the link. What I did fixed it so I'm leaving it as is for now.
DKinzer
but you are registering a style package for chrome://global/content/customizeToolbar.xul which is absolutely bogus. The behavior there is going to be very very strange.
sdwilsh