0
votes
0answers
15 views

How to tell, from JavaScript, if ClickOnce is supported on FireFox?

I am trying to figure out any way to tell if "ClickOnce" is supported in the browser. In Chrome, using the "ClickOnce for Google Chrome" plugin, I can just check ...
0
votes
1answer
16 views

Firefox: keep 2 versions, one with firebug addon enabled, one without

I would like to have 2 versions / shortcut of Firefox, one with firebug (and other developer addons), and one for normal navigation (keeping bookmarks, history etc and some other addons like ...
1
vote
0answers
19 views

Persistent windows in Mozilla Extension

Is it possible to create a window that's part of a Mozilla Extension that persists (is stable in location) across tab opens/closes, and across URL changes in a tab? So imagine a chat window that, ...
0
votes
2answers
22 views

Have a firefox extension recognise a tel: tag and hangle it?

I'm developing a click-to-dial tool, and would like to pass all tel: links in firefox to my extension, which will then run click to dial so <a href="tel:01223236103">Call this ...
5
votes
1answer
78 views

Why is JavaScript slower in a FireFox add-on than in a webpage loaded in FireFox?

I wonder why the same JavaScript code is considerably slower in a FireFox add-on (using the Add-on SDK) than directly running in a web page loaded in FireFox. For instance, this code: function ...
-1
votes
0answers
11 views

Address bar API for Google Chrome or Mozilla Firefox [closed]

I want to design a plugin for Google Chrome and Mozilla Firefox Browser which will make use of URL entered in Address Bar. But i didn't get the API for Address Bar. So, Please tell me where can I ...
0
votes
1answer
10 views

Spoofing Firefox HTTP headers - not just UserAgent

I want to modify the list of system fonts, or installed addons and NPAPIs reported. Or even the timezone and computer time, etc I want an addon that generalizes those headers and others. I don't want ...
0
votes
1answer
28 views

XUL menulist reloads panel onclick

i added the example from MDN of a menulist to an iframe inside a panel in my firefox extension, <menulist> <menupopup> <menuitem label="option 1" value="1"/> <menuitem ...
0
votes
0answers
17 views

XUL radiobutton not showing

i want to add a radiogroup to my firefox extension. I tried the code on MDN: <radiogroup> <radio id="orange" label="Red"/> <radio id="violet" label="Green" selected="true"/> ...
0
votes
1answer
19 views

XMLHttpRequest in firefox addon sdk

I'm using Mozilla Add-on Sdk for Firefox to create a small extension. I want to get data from several servers and display it on top left corner on user page. I don't know why, but XMLHttpRequest is ...
0
votes
1answer
19 views

How to build a Firefox extension that open like firebug

I know that this is not easy to achieve, however there would be a way to do so as firebug does... I want to build firefox extension like firebug that open in popup. How to build such extension that ...
-1
votes
0answers
26 views

Can I use inline installation in my web site for a published Firefox add-on

I have an extension published on the Firefox add-ons website. Can I use inline installation that will install the published extension just like I do with a Google chrome extension. I do not want to ...
0
votes
1answer
30 views

Firefox add-on sdk : how to use simple-storage API in a content script?

I am making a Firefox add on using toolbar button by Erik Vold and I would like to know how to have access simple-storage API in a content script. I know that you cannot access the API directly. var ...
1
vote
1answer
19 views

Audio tag not working in firefox add-on

I have a FireFox extension where I am trying to play (and loop) an audio file when a specific page loads. I am embedding an audio tag like so: start.js window.onload = function() { ...
1
vote
1answer
42 views

Is there an equivalent to jQuery.on for Firefox addons?

Is there anything equivalent to jQuery's .on functionality, for chrome-level javascript? I want a Firefox addon to add events on a large number of elements in a document in chrome context. Looping and ...
3
votes
0answers
38 views

Firefox-addon-sdk: launching pageMod when pressing a button?

I am making a Firefox add on using toolbar button by Erik Vold and I would like to know how to launch and stop pageMod when an user press a button in the toolbar. Is that even possible ? I tried ...
0
votes
0answers
13 views

Force Firefox to use HTTPS for every connection [migrated]

Is there an addon to force good 'ol firefox to append an 's' at the end of the http on the url bar, so all connections could be https? I know not every server has SSL, but in case they do, is there a ...
0
votes
0answers
37 views

How to hook into the Firefox Web Console Popup?

I've been trying to hook in to add some features to the popup that opens when you click an element in the Web Console - for example, when running document.getElementsByTagName('a') and clicking the ...
0
votes
0answers
12 views

How to make all menuitems of all menus radio type in firefox addon?

I am writing a proxy switcher according the the rigion and city.I use two level menus, first level menu is rigion and the second level menu is city. following is the xul code of my overlay. <?xml ...
0
votes
0answers
28 views

javascript ctypes String to unsigned char

I have a shared C library that is expecting unsigned char * as one of the paramaters What is the best way to get a Javascript string to be an unsigned char *? In my js file, I have the paramater ...
0
votes
0answers
13 views

Cannot shrink vbox using splitter

I'm trying to add a pane to the bottom of a Firefox browser window. I've added a XUL overlay that works correctly (mostly): <splitter/> <vbox> Hello world! </vbox> Now, I can make ...
0
votes
1answer
23 views

Request on firefox add-on doesn't seem to work

here is what I have done: - I downloaded, installed and run the firefox extension SDK - Created a whole new extension with ctx init - Opened lib/main.js - This is what I wrote there: var Request = ...
-2
votes
0answers
17 views

Building a firefox add-on just to inject js and make cross domain XHR [closed]

I developed a Chrome Extension for my website. What it does is just enabling it to make cross domain http requests. I only needed my extension to: a) Request the browser for additional permissions ...
-1
votes
0answers
24 views

How to configure firefox built-in pdf viewer [closed]

I want to configure my pdf.js in firefox. Specifically, I want to set the default zoom from auto to something else, say 150%. I found a pdfjs.database in about:config, which has a "zoom":"auto" in ...
2
votes
1answer
76 views

Firefox sdk - content script can't access self.port

I'm trying to make a firefox addon using their sdk, but I don't know how to make my js scripts comunicate. The goal is to make a panel with a form in witch there are 3 checkboxes that when selected ...
0
votes
1answer
95 views

Conduit Search was inadvertently installed and now my Firefox displays a Bing page rather than a 404

This was inadvertent on my part. I was installing a DivX upgrade and the "Install blah blah" checkbox (I only got a quick glance) was checked by default - on Mac OS, certain windows and application ...
0
votes
1answer
15 views

What file permissions are needed in an XPI?

I recently received the following comment from the reviewer of one of my add-ons at the official Mozilla Add-ons website: The permissions in your XPI are broken. Most files and directories do not ...
0
votes
1answer
87 views

Comunication between scripts in Firefox addon sdk - self.port doesn't exist

I'm trying to make a firefox addon using their sdk, but I don't know how to make my js scripts comunicate. The goal is to make a panel with a form in witch there are 3 checkboxes that when selected ...
0
votes
1answer
14 views

Firefox silent addon update

what are the technics to update an addon in Firefox? I want an update method, that will not inform users about whole process. In Chrome it works fine, you just need to update your extension in the ...
0
votes
1answer
125 views

VideoJS 4.0 “error” event an issue under Firefox 21.0

I am using VideoJS to cycle through videos, keying off the ended event to start the next video in queue. This has worked well, but with VideoJS 4.0, the VideoJS error event now fires under Firefox ...
1
vote
1answer
39 views

How to hook into the Firefox Network Request Popup?

I want to try to improve the way the Firefox console pops up network info dialogs. I tried overlay: overlay chrome://browser/content/NetworkPanel.xhtml ...
0
votes
1answer
34 views

Add download to Firefox via Firefox extension

This is my first Firefox extension which I'm developing with addon-builder [builder.addons.mozilla.org/] . My question is simple but after trying many things, for many days, I'm unable to get ...
1
vote
1answer
27 views

How can I access the notebook camera from firefox addon?

I really need my addon can access the notebook camera if it does exists.
1
vote
2answers
51 views

How to get all tabs and execute javascript on certain tab id in firefox

I am trying to build firefox extension which executes script in the tab. It can be easily done in chrome but I didn't find any api to do that in firefox. Can you guys show me the way ? My chrome ...
0
votes
1answer
38 views

What is wrong with this xul overlay?

I'm trying to add an "edit html" button to the Firefox dev tools. In chrome://browser/content/devtools/inspector/inspector.xul we have: <popupset id="inspectorPopupSet"> <!-- Used by ...
3
votes
0answers
92 views

How do I run Firefox inspector within an iFrame?

I know Chrome's inspector has a selector to choose which frame to use with the console. Firebug has a similar command, cd(window.frames[number]). Is there anything similar in Firefox Devtools? I ...
1
vote
2answers
34 views

Firefox extension elements id

Can someone tell me where can I find the ids of browser elements in Firefox? I want to put a menupopup in the web developer section in Firefox and I need an id to put into the insertafter attribute.
0
votes
2answers
47 views

How to check if Firefox extension code is running in privileged mode?

I have some event dispatching/listening going on between a Firefox extension and page content. Page content code is injected in extension's on-content-page-load handler. Is there a way I could check ...
0
votes
0answers
46 views

Mozilla FireFox Addons -> Include external library in main.js

I need to import/include a javascript file in my main.js in my FireFox Addon, but as the main.js does not contain a "document" I can not insert it the normal/easy way. I've tried some stuff but never ...
0
votes
0answers
17 views

Switching contexts in firefox extension

In my (content) page load handler, I'm adding an event handler to some elements on the loaded page, which dispatches a custom event. I'm listening for the event on chrome document and trying to send ...
0
votes
0answers
28 views

How to add addons using Selenium WebDrvier

I have to test some ads on the Webpage, this adds will be displayed, when i install the ads.exe file (internally it will add firefox add-on) to the Firefox browser. When i run the script using ...
0
votes
0answers
27 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
34 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?
0
votes
0answers
32 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
48 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
70 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
1answer
76 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
42 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
74 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
36 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", ...

1 2 3 4 5 29