firefox-addon

Upload selected area as image to server

I want to create a application (Firefox extension ) which will grab a screen area and save to image and upload to server. Here is my roadmap. First I will create a greasemonkey user script which will applicable to all domain, When any page will load , It will add a small button named "screengrab + upload" . when User will click on button...

Do you believe the Firefox project should be forked into a developer targeted version?

I've just got this idea that there is a need for a forked version of Firefox that would provide right out of the box tools for web development. Like FireBug, YSlow, FireCookie, LiveHTTPHeaders, etc. Maybe the fork should only include those extensions or take a further step and implement them in existing chrome. The reason I'm thinking ...

Can I have an XUL panel without a shadow in my Firefox extension?

XUL panels in a Firefox extension overlay always come with a shadow for free. How can I remove this shadow? Example code for the shadow effect I don't want: <popupset> <panel id="popuppanel" width="500" noautohide="true"> <vbox> <label value="test"/> <label value=""/> <label value=""/> ...

What lightboxes work inside Firefox extensions?

I want to use a lightbox like Shadowbox or similar inside a Firefox extension. But Shadowbox causes Javascript errors like this: Error: document.write is not a function Source file: chrome://iframe/content/shadowbox/shadowbox.js Line: 1557 Which lightbox supports IFRAMEs and will run correctly inside an extension (ie. added to the ove...

How to get Basic Authentication Information in a Firefox Extension?

I'm coding a Firefox extension and want to get Basic Authentication information for a website (or for the current document). How can I get Basic Authentication Information in a Firefox Extension? ...

firefox plugin that records traffic

Do you know of a firefox plugin that records the http traffic I generate while browsing? I would like something like firebug's net tab but it should not "restart" every time I click a new link. ...

Show Firefox tab tooltips faster

How can I make the tootip/flyover of the tabs appear faster? There is too much reaction time, it takes ages to look through many of them. I have most of the time 100 tabs open in Firefox (I am using the tab mix plus addon - "tmp"). To see what's in the different browser windows I do not activate them, but I just move the mouse over the...

Firefox addon to remove cache and cookies of one domain?

I use Firefox to develop a web site and at the same time to browse the web, read my gmail, etc. The problem is every now and then I need to delete the cache and or remove the cookies of the web app, but I want to stayed logged in in the other web pages I am visiting. Do you know a Firefox plugin (or Firefox trick) that can help with th...

Firebug 1.3.3 - Doesn't always allow script debugging?

I've been working with firebug for a while now, but I've noticed recently that it doesn't always allow you to set a break-point in your code for some reason. The line numbers in the firebug debugger turn all grey and you can't get the program to stop on any of them. When I can get it to work, the lines you can break on turn green. I...

XPCOM tab based variable.

When user clicks on of the button in toolbar it opens an url in the browser windows. user can process that content on clicking on some other button on the toolbar. However it creates a problem when i have multiple tabs opened and each tab contains different url (so when i send a request to the server through toolbar actions it takes id ...

Google Search API Inside Firefox Extension

Hi, I am developing a firefox extension and I need to include the Google Search API. But I am encountering an error in the google.load('search','1') line. Can anyone tell what the problem is Thanks. ...

Firebug "whitelist" mode

How do I get Firebug to do this: (from the Firebug website http://getfirebug.com/using.html) You can browse in two modes - either enable Firebug for all websites except those on the "blacklist", or disable Firebug for all websites except those on the "whitelist". How do I get the second option? I don't want Firebug running for every si...

Firebug debugger not working in FF 3.x ?

Hi, I have been using Firebug for a while now and for the past month I can't get the javascript debugger to work. I mean, it will work sometimes, but it does random things 80% of the time. I don't think that it's just me because a friend of mine have the same problem. I've googled the issue and I can't manage to find an interesting an...

PrototypeJS library compatible with Firefox Extensions?

Does anyone know if there is a PrototypeJS library that is compatible with Firefox Extensions? I have written a JS piece of code that is 700 line in Prototype and do not want to rehash it out using JQuery which I know is reccomended for XUL Extensions in Firefox? I've heard of Prototype XUL, but it seems like it is essentially just "Pr...

How to install a Firefox Addon with nsis

How can I install a Firefox addon via nsis installer? When I call Firefox with the .xpi extension it doesn't work and xpi extensions are not associated with Firefox either. If I drop it to "C:\Program Files\Mozilla Firefox\extensions" then it tries to install every single time a user opened the Firefox. Never deletes the original xpi ...

Do I actually have a need for a Singleton?

I'm working on a Firefox extension where I'll want to keep multiple windows in sync with the same information. The toolbar queries a remote server for info periodically, based on when the window was opened. Because Firefox windows are all separately self-contained environments, each with their own toolbar running separate code I thought ...

How can I construct an object using an array of values for parameters, rather than listing them out, in JavaScript?

Is this possible? I am creating a single base factory function to drive factories of different types (but have some similarities) and I want to be able to pass arguments as an array to the base factory which then possibly creates an instance of a new object populating the arguments of the constructor of the relevant class via an array. ...

firefox extension that adds a script to a html page

Hi, I am asking about using javascript to add a script to a html tab in firefox. I'd like to avoid using greasemonkey. Is there a way to do this? Thank you ...

Set Content-Type for testing from Firefox

I need to do some REST service testing from Firefox where I set the Content-Type HTTP header to a specific value (to retrieve XML or JSON). Is there a Firefox add-on that can do this? ...

Is there a dojo or a Jquery just for Firefox add on development?

Started working on Firefox add ons, which is done with JavaScript and XUL, and I find myself sorely wanting to use Dojo or someother kind of JavaScript like library, but I can't find one that exists. So I was thinking of starting a library by porting Dojo over to a Firefox add on specific fork. Get rid off the cross browser stuff, use ar...