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.
0
votes
0answers
10 views
How to open a standalone XUL file in firefox
Is there a platform-independant method to open a XUL file via chrome:// path without any other operation to do, knowing that I have at hand a communication with XPCOM.
All XUL files that I saw are ...
1
vote
1answer
12 views
Firebug Layout Tab Inconsistent with Firefox Responsive Tool
The firebug Layout tab says that my viewport is 788x1280, but in the firefox responsive tool I have it is set to 804x1280. What could cause the two to be have different widths?
1
vote
1answer
26 views
Inserting a bar on top of every page on the web through browser extension
I'm writing a browser extension that inserts a banner on top of every page that the user visits. The banner must not be sticky and must not block any existing content. (my chrome extension)
Currently ...
0
votes
0answers
10 views
Browser Extension vs. Plugin for image processing
I am interested in doing some image processing within a web browser. Do I need to be looking into a plugin, or an extension? Lets say I browse to a picture page and I want to have a plugin/extension ...
0
votes
0answers
15 views
Read dom from Firefox Add-on on click
I build a small add-on for firefox and for this I need to get elements from the site's dom.
So I try:
var pMScript = "self.port.emit('data',[ document.getElementById('mainphoto').src, ...
0
votes
1answer
34 views
mozrepl: go to the context of the browser window when entering in a new opened window
My problem is that I can not ascend to the browser window context after creating and entering a new window using mozrepl, how to do it?
ubugnu@spin-foam:~$ telnet localhost 4242 | tee -a .repl_log
...
0
votes
0answers
14 views
Thunderbird addon for email address crawler
I am looking for an addon to capture all email addresses to my address book from my Inbox.
I know EMail Address Crawler does the same;
...
0
votes
0answers
28 views
firefox extension:- pagemod not working
I wanted to modify the web page, every time the top page (not the iframes within page) is loaded. To my estimate I would need to use page-mod. But in my case it is not working.
1) Created file ...
0
votes
0answers
46 views
SDK Panel Content Script Reload
I've got a sdk panel with a contentURL on a php page, it will have to be able to navigate through multiple documents and still maintain the content script possibly via button on the contentURL or each ...
0
votes
1answer
34 views
Firefox add-on SDK: Get http response headers
I'm new to add-on development and I've been struggling with this issue for a while now. There are some questions here that are somehow related but they haven't helped me to find a solution yet.
So, ...
0
votes
1answer
51 views
Open new xul tab without showing the address (like google chrome)
is it possible to open a xul page (chrome://myext/content/page.xul) with a blank address page?
I want to have a xul page in a new tab to collect some information to my extension, but i wanted to hide ...
0
votes
2answers
32 views
Check network connection via Firefox Extension
Is there a possibility to check the connection to the network in a Firefox extension?
I just want to know if the user is Online or Offline.
I've already tried navigator.online, but it doesn't work.
...
0
votes
1answer
59 views
Fullscreen Youtube (or other flash apps) in tab
I have this question mainly about youtube video's, but extentable to any flash app that plays in fullscreen. Is there a possibility to make fullscreen not take over the entire screen, but just inside ...
0
votes
0answers
26 views
Locale string comparison does not work properly in Firefox extension web worker
The localeCompare() function does not behave the same in a Firefox extension main code and in a web worker (or chrome worker).
For instance, in the main code, I have this code:
var array = ["École", ...
0
votes
2answers
18 views
XUL Richlistbox selection issue
I have a richlistbox on my firefox extension as follows:
<richlistbox id="accList" class="accList" seltype="single" flex="1">
<richlistitem id ="accListTemplate" hidden="true">
...
-1
votes
1answer
21 views
How to inspect elements using Firebug while building a custom addon
I am building a custom firefox addon,But unlike chrome where I can inspect the HTML within the extension I cannot do the same for FF.
I need to style the HTML. Any clues on how I can go about this?
1
vote
0answers
43 views
Firefox Extension automatic update not working
I followed instructions here and after installed I opened the console mode to debug but the log stuck there without any response:
The console just shows something like following and nothing more ...
1
vote
1answer
37 views
imacros firefox loop through results and extract
I am using the imacros free plugin for firefox to scrape data from a javascript search form on a website. Here is a breakdown of my current macro which works to extract one set of results for me.
...
-2
votes
2answers
113 views
Firefox right click menu is too long [closed]
My Firefox is getting huge long menu when right click. I am searching on net. If you have any Idea, why it shows that type of menu, please help me.
2
votes
2answers
43 views
iMacros (Firefox) control via C#
I am working with iMacros (firefox) automation. So far I can open firefox, start macro. But I want that when iMacros finish its task. The browser closed. Is there anything that iMacro tell browser ...
0
votes
1answer
21 views
Firefox Addon SDK: is it possible to show another panel from another .js
I'm showing a panel from main.js
btn.addEventListener('click', function() {
var panel = require("sdk/panel").Panel({
width: 570,
height: 230,
...
1
vote
1answer
31 views
Access cookies with a Firefox Addon content script?
I am trying to translate an Addon from Chrome that someone else created. It has a content script that has chrome.cookies.get in it. I can't find a suitable way to fix this for Firefox. Is there any ...
0
votes
0answers
71 views
Download and concatenate multiple files in a Firefox extension
I would like to extend my Firefox add-on with the following capability: I've got a number of URLs (which are generated by the add-on). I would like to download and concatenate these files. And if ...
0
votes
1answer
25 views
Keypress event bubbling up from embedded browser
I have a Firefox extension that adds a button to the toolbar (navbar to be exact). When the button is pressed, a XUL <panel> (which is a child element of the button) is opened with an ...
0
votes
2answers
25 views
program to install firefox exetension in windows?
Is it possible to build a installer(or program) in windows 7, that can install extension to firefox (if the browser installed on the machine).
or atleast help me by providing command to install ...
1
vote
0answers
23 views
How Can I Reliably Complete Asynchronous Operations on Firefox browser close?
I'm writing a browser extension for Firefox that uses IndexedDB to save local data. When the browser closes, I'd like to write the latest data out to my IndexedDB. However, IndexedDB is entirely ...
0
votes
0answers
25 views
Personalized webportal in Firefox [closed]
I have been using iGoogle webportal for sometime now in my firefox as my home page. However with the upcoming closure of iGoogle I want to use this opportunity to create a personalized webportal in ...
1
vote
1answer
32 views
Firefox Addon SDK: How to add Navigation Toolbar button and drop-down menu
Developing a Firefox Add-on. Please someone help to add a drop-down menu with Navigation Toolbar button (like: firebug, colorzilla). I'm a newbie in this field.
I've attached a screen-shot to show ...
2
votes
1answer
80 views
Play audio from firefox extension's data directory
I'm making a Firefox extension and I'm failing to play a sound that's located in add-on's data directory.
The first thing I've tried was playing it in a content script this way:
var soundFile = ...
1
vote
1answer
45 views
Firefox Add-on SDK: how to make Panel transparent
Developing a Firefox Add-on. Anyone can please help to figure out how to make a Panel transparent.
Here is the code to show a panel:
var panel = require("sdk/panel").Panel({
width: 570,
...
0
votes
1answer
30 views
Firefox add-on builder: is it possible to add a .Panel on navigation toolbar
I'm a newbie in Firefox add-ons development. I'm developing an add-on and able add a button on navigation toolbar. But I need to add a panel (size of 125x30) instead of a button. Is it possible? If ...
0
votes
1answer
33 views
Adding a new search engine through a firefox restartless extension using SDK
I wanted to add a new search engine to be displayed in the drop down for search bar that appears in firefox nav-bar. And set this as the default searchEngine when user sets it through my extension's ...
-1
votes
0answers
11 views
Tamper only traffic to particular website [migrated]
Is there any way to let Firefox's Tamper Data plugin to tamper only traffic to a particular website?
Most of the websites send AJAX requests even without the user's knowledge. So when I am trying to ...
0
votes
1answer
34 views
How to package Firefox and Chrome extensions
I am new to Firefox and Chrome extension development.
I have downloaded and tested helloworld sample extension in both FF and Chrome in development mode.
Followed the following steps to work ...
0
votes
0answers
36 views
Node.Js in a Firefox extension (XUL)
i just tried to start a webserver with node.js.
The code example I'm followed is here: http://rawkes.com/articles/running-node.html
But if i want to initialize node.js, it doesn't work. Firefox ...
0
votes
1answer
36 views
Install Firefox extension with automatic script
I'm trying to install an extension for Firefox in Ubuntu, either globally or for a specific Ubuntu user or for a specific Firefox profile - doesn't matter which. I've tried the solutions posted in ...
1
vote
1answer
46 views
How to call a function using pointer in js-ctypes
I only have a pointer to a function, how to call it in js-ctypes?
Thanks.
0
votes
0answers
40 views
Issue with Google Toolbar and datalist element
I've stumbled across an interesting issue; it seems that datalist elements attached to text inputs do not function as they should when using Google Toolbar in Firefox, regardless of the version. While ...
1
vote
1answer
27 views
i can't see more my global object created by Components.utils.import(“resource://gre/modules/myfile.jsm”) in firefox 17
I have used next code to create MyGlobalObject in my MultiWindows application in firefox 15- .
netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
...
1
vote
1answer
51 views
{ENTER} Keystroke iMacros for Firefox
I've found a decent amount of code to replicate a backspace or the enter key (DS, WINCLICK, etc.) -- but none of them work on iMacros for Firefox (Version 8.3.0). Is there anything I can do with this ...
1
vote
1answer
67 views
Browser Extension the “Injected way” a cross-browser extension that include a JS from a distant server
I've found this nice article about the "injected Way", but the author never finished it :
http://hightechstartups.blogspot.ch/2012/05/different-way-of-developing-browser.html
I would like a bare bone ...
0
votes
1answer
18 views
How to hijack Firefox API in addon?
I want to hijack the SetPosition API of a nsIBaseWindow object, is there any way to do it in an addon?
0
votes
1answer
39 views
Firefox Extension content script with css and background images
I'm currently finishing a firefox extension which uses some content scripts. One of them appends some html/css in the current tab with JQuery:
var content = ''; //a lot of html
...
1
vote
0answers
24 views
JavaScript: Firefox addon panel is empty/blank
Javascript noob here.
I'm following the Firefox Annotator add-on tutorial and using the online Add-on Builder. I'm coming up against a very basic and odd problem: every panel I make is empty (i.e. ...
-1
votes
0answers
15 views
Is it possible to display the total time taken by an over file download on chrome or firefox? [closed]
I download several files through chrome or firefox, and I want to know how much time it takes to download each of these files.
I search for plugins or software to get this information and don't find ...
0
votes
1answer
66 views
Iframe load event in firefox extension
I'm building a firefox extension that has an iframe inside a panel.
I use a xul file as src of the iframe.
When i click on a specific button inside the iframe, i want the iframe to be loaded again ...
1
vote
1answer
32 views
What does view-response.js in Chrome do?
When loading a page (200 OK response header), I received an error in the HTTP response add-on for Firefox:
[Exception... "File error: Not found" nsresult: "0x80520012 (NS_ERROR_FILE_NOT_FOUND)" ...
-1
votes
0answers
34 views
How to add content script in firefox addon (low level)? [closed]
I am (re)making my extension without the sdk because I cannot make it work for versions of firefox before 16.
My (new) extension works but I would like to add some content script on a specifique ...
1
vote
2answers
41 views
Firefox addon compatibilty with version 11
I made an addon for Firefox and it works with the latest version. My problem is that I want it to work with all versions of Firefox. How can I do this?
Info:
I used the Add-on SDK to make the ...
0
votes
1answer
42 views
Closing Firefox Browser Entirely Via Javascript & Plugin
I am using a portable version of firefox in a kiosk mode for a game I am developing. The idea is that presentation layer of the game is down using javascript & svg in a browser, but it needs an ...



