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.

learn more… | top users | synonyms (1)

69
votes
6answers
36k views

How do I write a Firefox Addon? [closed]

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? ...
43
votes
5answers
19k 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"> ...
23
votes
19answers
47k views

Common sources of unterminated string literal [duplicate]

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 ...
9
votes
4answers
6k 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 ...
10
votes
5answers
19k 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?
1
vote
3answers
352 views

What's the best way to communicate with a Firefox addon

I need to be able to get the URL from the active tab in Firefox. DDE doesn't work with multiple instances so I was thinking that I could build an addon that sets a global atom or something. I also ...
1
vote
2answers
1k views

Reference a binary-component to js-ctypes - Firefox addon

I have, registered in my chrome.manifest, a binary-component: binary-component components/linux/myLib.so abi=Linux_x86-gcc3 Now I want to pass it's path to ctypes.open(). My question is how do I ...
10
votes
1answer
2k 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 ...
4
votes
4answers
6k views

Get selected text and selected nodes on a page?

When selecting a block of text (possibly spanning across many DOM nodes), is it possible to extract the selected text and nodes using Javascript? Imagine this HTML code: <h1>Hello ...
2
votes
2answers
347 views

Accessing Variables from Greasemonkey to Page & vice versa

I have the following code in test.js which is run right before </body>: alert('stovetop'); alert(greasy); I have the following code in test.user.js: (function () { 'use strict'; var ...
3
votes
3answers
2k views

Modify URL before loading page in firefox

I want to prefix URLs which match my patterns. When I open a new tab in Firefox and enter a matching URL the page should not be loaded normally, the URL should first be modified and then loading the ...
1
vote
1answer
395 views

How to hook the download dialog in a Firefox extension?

I'm writing a Firefox extension and I need to hook the download dialog that comes up when the user tries to download a file. In other words, I need a script-defined function to be notified instead of ...
5
votes
3answers
932 views

Google Analytics to track FireFox extension use

I'm developing a Firefox extension and would like to track its use with google analytics, but I can't get it working. I've tried manually calling a function from ga.js, but that didn't work for some ...
9
votes
2answers
5k 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, ...
1
vote
2answers
441 views

Web Page Source Annotation Tool

<ul class="contact"> <li class="first">Carnegie Mellon University</li> <li>5000 Forbes Avenue, Pittsburgh, PA 15213</li> </ul> => <ul class="contact"> ...
0
votes
1answer
246 views

Communication between extension and plugin

I have written a Firefox extension which queries some browser information. I need to send this information to an NPAPI plugin from my extension. How can I achieve this? Is there any way to ...
0
votes
1answer
368 views

An example of nsIContentPolicy for firefox addon?

I have read NsIContentPolicy and have searched whole Stackoverflow for a proper tutorial for implementing NsIContentPolicy, but all in vain. I know that Adblock uses NsIContentPolicy as their main ...
27
votes
2answers
2k 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 ...
8
votes
8answers
8k 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 ...
6
votes
2answers
1k views

Using Add-on SDK to add toolbar buttons? Integrating XUL and Add-on SDK for Firefox Add-ons?

I have already coded most of a Firefox add-on using the Add-on SDK API. I am now discovering that Add-on SDK might not be powerful enough for my purposes. I need two things: A drop down button in ...
5
votes
1answer
2k views

Inserting CSS with a Firefox Extension

I'm building a Firefox extension that adds HTML elements to certain pages of a website. I want to have it insert a custom CSS file to style those elements. It works if I insert tags with the CSS ...
4
votes
2answers
588 views

Can a site invoke a browser extension?

I am a newbie to the browser extension development and I understand the concept of browser extensions altering the page and injecting codes into it. Is there a way this direction can be turned ...
4
votes
2answers
698 views

How to parse a XML string in a Firefox addon using Add-on SDK

I am trying to create a FF AddOn that brings some XML data from a website. But I can't find a way to parse my RESPONSE. First I used DOMParser but I get this error: ReferenceError: DOMParser is ...
3
votes
5answers
709 views

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 ...
2
votes
2answers
753 views

Firefox extension opening a page on install

I noticed some Firefox extensions when installed will open up a page once you restart the browser, for example the StumbleUpon toolbar. This is useful to show update notes and give the user some ...
6
votes
1answer
2k views

File System access from Firefox Extension

Is it possbile to create a firefox extendsion to write to files in a windows file system ?
5
votes
1answer
785 views

Replicate the functionality of Java's “Pattern.quote” in a JavaScript RegExp

In Java, you might try to make a regular expression that would match the URL stackoverflow.com using Pattern.compile("stackoverflow.com"). But this would be wrong because the . has special meaning in ...
2
votes
3answers
361 views

My Firefox extension to inject CSS wont work

I am busy developing a firefox extension. I am using the Add-on Builder What it will do: Get an ID from a PHP page (XMLHttpRequest) Call another function and send that ID with it That function ...
2
votes
2answers
948 views

Using a plugin generated with Firebreath in a Firefox Extension?

Is it possible to use a .dll made with Firebreath in a Firefox extension? Currently, I am trying to port an extension I made for Google Chrome that uses javascript to get the HTML of the document, ...
2
votes
1answer
526 views

Is it possible to detect when a user switches tabs?

In particular, I am interested to know if it is possible to capture a user's click to a different browser tab. I guess technically I could get the blur and focus of the window object but if there was ...
1
vote
1answer
842 views

How to execute a windows command from firefox addon?

How to execute a windows command and display it's output using firefox addon? For example: ping www.stackoverfow.com I am just trying to explore more in firefox addon development by executing a ...
1
vote
1answer
3k views

An observer for page loads in a custom xul:browser

In my firefox extension I'm creating a xul:browser element. I want to have an observer that intercepts any url changes within the embedded browser and opens the url in a new browser tab (in the main ...
6
votes
1answer
2k views

about config preferences and js

I wonder if it is possible to get values of certain preferences set in about:config using javascript? Incentive is to get value of preferences set in firefox addon i've created when user lands on ...
3
votes
1answer
517 views

Firefox extension: check if window is minimized

I'm trying to keep track of the state of a Firefox window ("maximized", "minimized", "normal", "fullscreen"; see here). However, whatever I've tried, I never get to see the minimized event; the others ...
3
votes
2answers
782 views

Get PostData as in FireBug

Anyone, help me, how to get Headers and PostData inside extension, using xpcom/something else? i cant find functions inside firebug due to it is big codebase... thank you guys
1
vote
2answers
581 views

Firefox extension observing response

I am trying using code // This is an active module of the goelvivek (8) Add-on exports.main = function() { var httpRequestObserver = { observe: function(subject, topic, data) { ...
1
vote
2answers
887 views

Scriptable NPAPI plugin doesn't work with Firefox

I'm developing FF extension and plugin that work in tandem. My Extension injects npapi plugin into the html and calls some method of the plugin after an event occures. Here is the code I use for ...
16
votes
10answers
7k views

How to reload/refresh a web page without leaving my web development IDE?

Building Websites When I build websites I use 2 monitors. I have my development IDE on the main monitor and the web page open on the secondary screen. I get annoyed that everytime I need to refresh ...
13
votes
1answer
1k 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 ...
18
votes
1answer
4k views

python for firefox extensions?

Can I use python in firefox extensions? Does it work?
17
votes
2answers
7k 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 ...
9
votes
3answers
2k 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 ...
10
votes
6answers
4k 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 ...
9
votes
4answers
10k 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 ...
11
votes
3answers
6k 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 ...
6
votes
5answers
180 views

innerHTML: How To Avoid

I'm writing a plugin which will convert emoticons to images in a text block for a particular site. The easy answer is to use regular expressions to detect the trigger text on the innerHTML and insert ...
5
votes
2answers
3k views

Accessing document's javascript variable from firefox extension

is it possible for Firefox extension (toolbar) to access document's variables? detailed explanation follows.. loaded document: <script type="text/javascript"> var variableForExtension = ...
3
votes
2answers
2k views

Firefox Extension Development - Data Storage - is Firefox Preferences a good place?

I have developed a Firefox add-on that needs to save some user-data in the local machine. Right now, I use the filesystem functionality that Firefox provides to create some folders and files in the ...
1
vote
1answer
1k views

Concurrency with Firefox add-on script and content script

As I was writing a Firefox add-on using the Add-on SDK, I noticed that the add-on code and the content script code block the execution of each other. Furthermore, the add-on code seems even to block ...
10
votes
4answers
4k 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

1 2 3 4 5 7