Tagged Questions
1
vote
1answer
108 views
Safe location to write a file from a Firefox extension?
I am working on a Firefox extension that makes uses of a local .xml file, it reads and write it.
I have no problems with the code and it works fine on my pc using the desktop directory for testing, ...
0
votes
1answer
31 views
hbox should be always at the bottom
I develop a Firefox plugin with popup panel. On the panel I have three elements with a hbox. First and second hbox have a fixed size (20px and 400px). The last element should be always on the bottom ...
3
votes
3answers
159 views
Addon cannot be installed by an error of not be able to modify the needed file
I developed an addon and it run perfectly on my PC. But when I send it to install on our client, it got an error that say something like this "Your addon cannot be installed because Firefox couldn't ...
4
votes
1answer
685 views
firefox add-ons sdk vs XUL
I've just started creating my first firefox add-on and I'm currently in the learning stage, to familiarize with the api.
However I found a little ambiguous what method should I use. After I've read ...
3
votes
1answer
622 views
Use Remote Content Script File/Javascript in Page-Mod
Is there any way to easily use a remote javascript file as a content script with the page-mod API?
I am trying to build some simple addons for my own use to automate some repetitive stuff. Because ...
0
votes
1answer
139 views
Questions on backwards compatibility of Firefox Addons/Extensions
Background info:
Over the past week, I have been messing around with Chrome extensions and had no problem creating my extension. Great, Chrome rocks for making the development process very easy to ...
0
votes
1answer
169 views
Firefox add-on: Injected HTML
I'm trying to write an add-on for firefox and i'm having a problem-
When the user right-clicking on the page the add-on is adding an element to the page's body using
...
13
votes
4answers
2k views
Changing Window.prototype.open in a way that isn't detectable/reversible
I am looking into ways to extend Firefox pop-up blocking from an extension. One option is replacing window.open() (or rather Window.prototype.open()) in the webpage by a wrapper function. An important ...
0
votes
1answer
997 views
How to differentiate between Firefox tabs?
I am currently developing a Firefox extension, and I need the ability to be able to differentiate between each open tab.
The idea is to be able to associate outgoing HTTP requests with its origin ...
0
votes
1answer
235 views
Firefox 4 extension file.createUnique exception: NS_ERROR_FAILURE
I developed a firefox extension which collects some data and saves them into a file on desktop.
It works well on Mac OS, however on Windows 7, an error throws when the file is being created.
The ...
2
votes
1answer
347 views
In my firefox extension, onUninstalled event doesn't seem to fire
Firefox 4 exposes some events to detect when the user is uninstalling an extension. I can get onUninstalling to fire (when the user clicks to remove an extension), but I can't get anything to happen ...
2
votes
1answer
618 views
How to use nsITimer in a Firefox Extension?
I am working on a Firefox extension, and wish to make use of a timer to control posting of data every 60 seconds.
The following is placed inside an initialization function in the main .js file:
var ...
1
vote
1answer
52 views
FF extension : goUpdateCommand not calling the command
Firefox version : 4.0.1
I have a commandset which fires when something is selected.
The commandset is working fine. If I put a simple window.alert('test'); it does fire. However when I try to call ...
1
vote
1answer
230 views
No browser.dom.window.dump.enabled in Firefox
I'm using a firefox developer tutorial and one of the options asks to update the browser.dom.window.dump.enabled option but it doesn't seem to exist in my version of Firefox (4.0.1 in Ubuntu). The ...
2
votes
1answer
190 views
Keeping cookies when testing an addon
I'm developing an addon using Firefox Add-on SDK. I am using cfx to run my addons when testing.
The app posts some text when highlighted to twitter.
The problem is each time I modify the code I have ...
0
votes
1answer
112 views
firefox addon: Talking back to the script
I am new to extension programming but find making extensions in Chrome much more easier, but now that I am trying to port my test extensions to FF I have a few questions of how to do the same things I ...
0
votes
1answer
58 views
Empty default sqlite in a Firefox 4 compatible extension
I would like to provide a mechanism for a Firefox4-compatible extension I'm writing, to allow a local DB (developed by me in sqlite) to be originally created/copied to the profile folder.
In FF3.6 it ...
3
votes
1answer
152 views
Updating a XPI to be compatible with FF 4.0?
An extension that I wrote stopped working as the user base started migrating to Firefox 4 and now I'm trying to find ways to update it to be compatible.
I've read thru the various blog posts / pages ...
0
votes
1answer
144 views
How can I create a page like Add-ons Manager with urlbar and toolbar hidden at Firefox 4 extension?
When browsing the Add-ons Manager, about:addons, in Firefox 4, the toolbars and urlbar are hidden when "Tabs on Top" has been set.
As I am writing an extension in bootstrapped method, how can I ...
1
vote
1answer
251 views
Permission denied to call method HTMLAnchorElement.focus
After upgrading to Firefox 4, I started seeing this error on a site I maintain:
Permission denied for <...> to call method HTMLAnchorElement.focus
I have built a simple scenario to recreate ...
3
votes
1answer
170 views
How to prevent FF4 popup menu from being transparent?
I develop "Hebrew Calendar extension" (https://addons.mozilla.org/en-us/firefo ... -calendar/) and under FF4 extension shows transparent popup menu
Could you help me to understand how to fix the ...
0
votes
2answers
188 views
Status Bar in Firefox 4
Firefox 4 has introduced a new "floating status bar" which appears only when DOM resources are being loaded or when the user hovers over links.
I have developed a Firefox sidebar extension which only ...
1
vote
1answer
68 views
Does Firefox expose an assertion library to extension authors?
I'm writing a Firefox extension and am wondering about the best way to assert my application's invariants. From what I understand if I set browser.dom.window.dump.enabled = true in about:config, then ...
2
votes
2answers
307 views
Debug print from a bootstrapped Firefox4 extension
I'm rewriting a Firefox extension to be bootstrapped (restartless). I've patched rdf with a node < bootstrapped >. Then I introduced file "bootstrap.js":
function startup(data, reason) { ...
1
vote
0answers
104 views
How to create a cross-site statusbar extension in Firefox 4? [closed]
I have created a Firefox extension https://addons.mozilla.org/en-us/firefox/addon/gesture-translate/
This extension worked fine in the previous versions of FF. But, now only works if the Add-on Bar ...
1
vote
0answers
62 views
Help! - Upadate Firefox3 Addon to Firefox4 [closed]
I know how to update the maximum ver. # in install.rdf,
but after updating fx3 to fx4, I did the updating trick to the .xpi
it installed but addon is enabled but not working (it means addon that want ...
2
votes
0answers
125 views
firefox 4.0 compatible dictionary [closed]
I have written a marathi dictionary that can be found here...
https://addons.mozilla.org/en-US/firefox/addon/marathi-dictionary/
The code is exactly same as any dictionary that can be found here...
...
1
vote
1answer
80 views
Package executables along with Firefox addon
My addon requires to run certain exes and hence I used to package the exes alongwith my addon and put them under the content dir. At the time of running the exe, I used to access the executable by ...
1
vote
1answer
800 views
Native NPAPI plugin isn't loaded by Firefox Beta 4
I've been scratching my head over this for the last few days and neither me nor Google have come up with a good solution.
I have a native NPAPI plugin that works fine for Firefox 3.6. It simply ...
3
votes
1answer
567 views
Firefox extension localStorage events
I am making a Firefox extension to determine when a "storage" event is fired from the localStorage.
In Firefox 3, I have this line to bind the storage event in the window to a function in the ...
4
votes
2answers
371 views
Upgrading an addon to be compatible with Firefox 4.0, but trying to keep it compatible with 3.x also. Advice?
I have an add-on which was written for Firefox 3.6 and now I'm upgrading it for Firefox 4.0, while trying to also keep it compatible with 3.6. Does anyone have any experience with trying to do this, ...