Tagged Questions
A Firefox addon is a way of adding to or modifying the Firefox web browser. Most commonly, questions in this tag are about Firefox extensions, which add new functionality to the browser, although "addon" may also refer to themes or plugins.
34
votes
6answers
14k views
How do I write a Firefox Addon?
What are some resources for getting started writing a Firefox Addon? Is there an API guide somewhere? Is there a getting started tutorial somewhere? Is there a developer discussion board somewhere?
...
27
votes
5answers
12k views
How to use jQuery in Firefox Extension
I want to use jQuery inside a firefox extension,
I imported the library in the xul file like this:
<script type="application/x-javascript" src="chrome://myExtension/content/jquery.js"> ...
18
votes
4answers
6k views
Fastest way to debug Firefox addons during development
Debugging a Firefox addon is a slow process: (1) edit source code in a JS editor (2) package into XPI using a build script (3) drag into Firefox to install (4) restart Firefox (5) open the JavaScript ...
16
votes
3answers
6k views
Firefox addon to view/edit/create localStorage data?
Is there an addon that allows you to view, edit, localStorage information?
If there is and it works as an extension of Firebug I will be extremely happy.
Something like Google Chrome's
similar to ...
16
votes
2answers
403 views
Objects in JavaScript defined and undefined at the same time (in a FireFox extension)
I am chasing down a bug in a FireFox extension. I've finally managed to see it for myself (I've only had reports before) and I can't understand how what I saw is possible.
One error message from my ...
14
votes
2answers
695 views
How to get notified about changes of the history via history.pushState?
So now that HTML5 introduces history.pushState to change the browsers history, websites start using this in combination with Ajax instead of changing the fragment identifier of the URL.
Sadly that ...
14
votes
17answers
23k views
Common sources of unterminated string literal
I am trying to debug a JavaScript script that gets read in a Firefox extension and executed. I only can see errors via the Firebug console (my code is invisible to Firebug), and it's reporting a ...
13
votes
4answers
361 views
Zero-configuration, automated, random testing tools for web-apps?
In short, I'm looking for a tool to perform an automated, zero-configuration, full-frontal assault on a web application.
I'm thinking this would logically be a browser-extension that both crawls ...
11
votes
4answers
187 views
Create Firefox addon to fix broken webpage on the fly
At my job they use a "central login" facility on internal webpages. Whenever an internal webpage requires authentication, it forwards you to the central login, and after logging in, it sends you back ...
11
votes
2answers
561 views
Check if a Firefox 3.5 add-on is enabled
In order inform the user of possible conflicts, I'd like to have my add-on check if another add-on is installed and enabled. If so, I can disable either it or my own at the user's bequest:
function ...
11
votes
3answers
5k views
Debugging greasemonkey-like scripts
I'm writing javascript code that is read in as a string and executed via eval() by a firefox extension. Firebug does "see" my script so I am not able to use breakpoints, see objects, etc.
I am ...
10
votes
4answers
376 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 ...
10
votes
2answers
204 views
How to get notification when window closes in Firefox extension?
I am making toolbar for Mozilla Firefox. On the click of a button on my toolbar, I am opening a new window which navigates to my HTML Page created by me. On this HTML Page on the click of a button I ...
10
votes
4answers
443 views
Firefox Extensions - best practices
I've been writing a Firefox extension, but have recently read a few articles explaining that it's bad practice to avoid variable name clashes by simple appending the application name to the front of ...
10
votes
1answer
2k views
10
votes
14answers
9k views
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, ...
9
votes
3answers
250 views
inserting local css file with firefox extension
I am building a firefox extension and need to insert some elements and css into the doc.
I tried following How can a Firefox extension inject a local css file into a webpage? and Inserting CSS with a ...
9
votes
3answers
1k views
Is there a way to port a chrome extension to other browsers?
Is there a way to port a chrome extension to other browsers, without having to entirely re-write the code? My chrome extension uses the browser_action command to open "popup.html" in the extension ...
9
votes
10answers
1k views
Is there an addon which you can test css selectors in firefox?
I was wondering if there is such an addon in firefox where you can test out css paths to check if they are finding the correct element? I was looking for something similar to xpather for xpath ...
9
votes
5answers
470 views
Unit Testing a Firefox Addon
In working on a firefox addon, i've found the task of unit testing to be kinda janky and difficult to setup. Anyone have recommendations on how to setup unit tests for an addon? Any tools or ...
9
votes
2answers
1k views
How can a Firefox extension get its own version number programmatically?
How do I programatically get my own Firefox extension's version number with Javascript?
My extension has an install.rdf file containing the version number similar to below. I want to extract the ...
8
votes
4answers
332 views
What does 'chrome' mean?
content: A browser for content. The content that is loaded inside the browser is not allowed to access the chrome above it.
This sentence is seen on the Mozilla documentation for XUL. What does ...
8
votes
2answers
553 views
How to get text from Address Bar in Firefox extension
I am building a Firefox Extension. I am using XUL and Javascript to do this. I need to get the text from my Firefox browser's address bar.
Please don't get confused with URL where the browser has ...
8
votes
1answer
1k views
How can a Firefox extension inject a local css file into a webpage?
I'm writing a Firefox extension that needs to inject a css file into webpages. The css file is bundled with the extension, so I can access it using a chrome url
...
8
votes
6answers
3k views
Geolocation provider for Firefox that allows manual input
Are there any easy ways to override the default behaviors of the geolocation api and just hard code your current location?
I think this would be useful for testing and for privacy reasons (providing ...
8
votes
1answer
3k views
Altering HTTP Responses in Firefox Extension
How can I alter the HTTP response body in a Firefox extension? I have setup an http-on-examine-response observer and an nsIStreamListener object with the code below. After I get the data, parse it, ...
7
votes
2answers
105 views
confused with 'prototype' (Firefox extension)
I'm developing a firefox extension and I think I've now hit a basic misunderstanding regarding Javascript, with the 'prototype' concept to be exact. Consider the following minimal example, notice the ...
7
votes
1answer
280 views
Sharing data between files in a Firefox extension
I'm moving an extension from Chrome to Firefox and I'm using jetpack. To access functions declared in the background file from a panel or popup I can use chrome.extension.getBackgroundPage in Chrome. ...
7
votes
1answer
844 views
Help me create a Firefox extension (Javascript XPCOM Component)
I've been looking at different tutorials and I know I'm close but I'm getting lost in implementation details because some of them are a little bit dated and a few things have changed since Firefox 3. ...
7
votes
4answers
2k views
How to view “generated HTML code” in Firefox?
If using Firebug, we can click on the HTML tab, and click to expand each element to see the generated HTML code. Is there a way to expand it all or get a plain text file?
I just accidentally found ...
7
votes
6answers
2k views
Firefox extensions & XUL: get page source code
I am developing my first Firefox extension and for that I need to get the complete source code of the current page. How can I do that with XUL?
7
votes
8answers
5k views
Greasemonkey @require jQuery not working “Component not available”
I've seen the other question on here about loading jQuery in a Greasemonkey. Having tried that method, with this require statement inside my ==UserScript== tags:
// @require ...
7
votes
2answers
673 views
Replicating Google Chrome Browser Actions popup Effect in a Firefox Extension
Chrome Browser Actions provide a really nice popup effect by default.
Hovering over the toolbar icon provides a neat hover effect.
Clicking the toolbar icon shows a nice animation that opens the ...
7
votes
2answers
2k views
Firefox extension to find out which Javascript event is bound to an inspected element?
One can bind Javascript events to html elements without using inline declarations.
Is there a way when inspecting an html element to know which events are bound to the element?
I want to know about ...
6
votes
3answers
216 views
How can I debug a Firefox extension with Firebug?
I'm trying to use Firebug to debug a JavaScript file in an extension I've added to Fx 4.
Can anyone tell me how to do it? I can only see website scripts.
6
votes
3answers
350 views
Port a firefox extension to a BHO (Browser Helper Objects, aka IE extensions)
I have a Firefox extension that I would like to port to IE, I don't want to code it again.
Is there something that can help me? It could come in very different ways:
An IE BHO that can render a ...
6
votes
3answers
530 views
jQuery in Firefox extension
I would like to include jQuery in a Firefox extension.
I add the following line of code to import the jQuery file:
Components.utils.import("resource://js/jquery.js", window.content.document);
...
6
votes
2answers
930 views
What is the proper way to get bounding box for HTML elements relative to the Window?
I'm writing a Firefox extension. I'm trying to limit it to just XUL+Javascript (no XPCOM). When I get a mouseover event for an HTML element, I need to get its bounding box in the windows coordinate ...
6
votes
3answers
5k views
Get Windows username with JavaScript?
I am working a Firefox addon (which is written in JavaScript) and need to determine the Windows user currently logged on. Is there a way to do this?
6
votes
4answers
2k views
Modifying HTTP response headers in Firefox
Does anyone know if Firefox extensions are allowed to modify HTTP response headers? For example, can an extension remove the x-frame-options header to let the page load in an iframe?
Thanks
6
votes
5answers
1k views
I want to use VI-like commands in Web Browser?
I love VI and I'm looking for a plugin of some sort that would allow me to input text in my browser (preferably Firefox or Chrome) using VI commands. It would save me an immense amount of time and at ...
6
votes
2answers
179 views
Removing Firefox Addon prefs when a user uninstalls
I'm working on a firefox addon and one thing i'm unsure on is how to remove user preferences related to my addon when the user uninstalls it. The preferences get set, and if the user uninstalls and ...
6
votes
4answers
4k views
How to write FireFox extension with Visual Studio using C# programming language?
I was wondering if it's possible to write Firefox extension using .Net Framework?
Had anybody such experience in writing Firefox extensions using C# programming language?
Any good sites or guidelines ...
6
votes
2answers
2k views
Firefox extension with jquery 1.3+
I use jquery-1.2.6 within my Firefox extensions and it works great. Some days ago i wanted to update to the current version of jquery (1.31) but this does not seem to work anymore. Here is my ...
5
votes
1answer
78 views
Is there any way to get the word under the context menu in a firefox extension?
I'm writing a Firefox extension to add a context menu element and I can get both the DOM element and the selected text, but can't manage to get the unselected word on which the right click event was ...
5
votes
1answer
123 views
Add submenu in menupopup mozilla extension developmet??
Here I am working with firefox extension development. I have using XUL Overlays to add menu popup item in my extension.
<menupopup id="menu_ToolsPopup">
<menuitem ...
5
votes
2answers
277 views
How can I use jQuery 1.5.2+ on a Firefox addon?
At first I made a function that received a parameter and returned jQuery such as:
function getjQuery(window)
{
/*jquery code*/(window);
return window.jQuery;
}
But then I got an email form ...
5
votes
1answer
421 views
What are the advantages/disadvantages of using the Add-on SDK to develop my Firefox extension?
I am developing (yet another) password manager add-on for Firefox. My add-on needs to:
Add two context menu items to each password field.
Open a dialog box or floating panel when the menu item is ...
5
votes
1answer
196 views
Grep a page in firefox using javascript
Am writing an extension to provide grep'ing functionality in Firefox. At my workplace we access all log files using a browser, and grep functionality would be ideal for filtering results, looking at ...
5
votes
1answer
138 views
Auto-Suggest Source from JS-Chrome-Content Function in Firefox Addon
Regarding Mozillas Auto-Suggest Extension Tutorial I'd like to design my own auto-suggest extension. The tutorial uses json defined in the autocompletesearchparam param as suggestion-source.
How ...