The Add-on SDK (formerly codenamed Jetpack) is a set of tools and APIs that allow you to create Firefox add-ons using standard web technologies (HTML, CSS, and JavaScript). The SDK includes APIs, a test framework and documentation as well as a command-line tool for creating, running and testing ...
1
vote
1answer
8 views
Downloading Files ( Code snippets ) in firefox sdk builder
i am trying to get fist block code work in mozila sdk builder. (web IDE)
https://developer.mozilla.org/en-US/docs/Code_snippets/Downloading_Files
I have changed alias Components.utils to Cu and etc. ...
0
votes
0answers
8 views
Firefox extension installation priority
could you help me with quite rare situation. So I have Firefox extension installed via adding XPI into FF browser with some ID and than I have installed extension with the same ID but via Windows ...
1
vote
0answers
18 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
1answer
8 views
Passing objects to workers
I'm trying my luck with a Mozilla extension.
I want to use the below code to read line by line from a file and store the content in an array. And I've been trying to use workers to do this task in ...
0
votes
0answers
9 views
firefox-addon-sdk localization of add-on options
In firefox Add-On builder there is a possibility to drop add-on preferences into the properties window in an "Extra package.json Properties" field.
The preferences for localization look like this:
{ ...
1
vote
0answers
22 views
Firefox addon toolbar button disappears after first run
I have a Firefox addon made with the add-on SDK.
https://addons.mozilla.org/es/firefox/addon/board-notes/
To add a toolbar button I use a popular library for this SDK toolbarbutton.js:
...
0
votes
1answer
24 views
Porting Chrome extension to Firefox : equivalent to chrome.storage
I'm trying to port Chrome extension to Firefox and I would like to know what's the equivalent to chrome.storage.local.set and chrome.storage.local.get in Firefox add on sdk. I think, it's ...
-2
votes
1answer
18 views
How to replace banner using fire-fox addon?
I need to make custom banner addon which replace with 728*90 default banner space from website, Like if any one browse mashable.com it shows my banner using firefox addon.
I successfully inject ...
2
votes
2answers
34 views
Full privileged console for firefox
I'd like to play around with developing firefox addons, and I'm going to be accessing stuff like Components.utils and other objects, which are not accessible from the client code.
I've tried native ...
0
votes
0answers
12 views
Response header from main frame
I am building a Firefox Extension using the sdk and I need to analyse the response headers for websites opened on each tab and, if a specific header exists, mark the tab where the site containing this ...
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
0answers
21 views
Getting the real HTML5 video width and height
I have a video element:
var video = window.content.document.createElement("video");
video.width = width;
video.height = height;
video.style.backgroundColor = "black";
...
0
votes
1answer
29 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 ...
0
votes
0answers
16 views
How to add the Facebook API in a firefox add-on using JavaScript sdk
I created the facebook login-button using the page-mod to run in every webpage.
However, when I try to do login, this error message appears:
"Given URL is not allowed by the Application ...
0
votes
0answers
22 views
my firefox plugin is sending data to my website but website is not recieving the data
code on my plugin to send data on website
var req=new XMLHttpRequest();
req.open("POST","my website url ",true);
req.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
...
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 ...
1
vote
1answer
29 views
Making Firefox addon-sdk handle multiple tabs
I've made a add-on for Firefox using it's add-on builder SDK. At first it works just fine, but then when I switch tabs it starts acting weird and loose its functionality.
I know I must be missing ...
1
vote
1answer
61 views
IFrame in content script. How to communicate with main.js?
My Firefox add-on opens Fancybox (type: "iframe") from a content script (page-mod). In the Fancybox I show my own HTML page (my_fancybox_stuff.html) that is located in my own server.
Now, from the ...
0
votes
0answers
43 views
Panel Document Change Reload Content Script
I have a SDK Panel with a contentURL on a php page and I'm looking for a way to keep the content script loaded after the panel document changes. For example the starting page is page1.php, the script ...
1
vote
2answers
52 views
Communication between content script (page mod) and popup (panel)
I currently am making a Firefox extension with Firefox add on sdk and I tried to communicate between content script (page mod) and popup (panel) to no avail.
I am using toolbar button by Erik Vold. ...
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
1answer
75 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 ...
1
vote
1answer
26 views
Take contents of a tab and write it in file
I am trying to extract the contents of a authenticated site.
I trying this by using latest Firefox Add-on SDK to make a extension to do that.
Till now i learned how to open a tab.
var Widget = ...
0
votes
0answers
90 views
Firefox add-on SDK: Access html and image files under Data directory from content script
Hello Firefox Addon SDK experts,
I'm pretty badly stuck with the following issue.
From my content script, I need to draw a UI using a set of HTML files and image files that are stored under my ...
0
votes
1answer
86 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 ...
3
votes
1answer
72 views
Inject CSS in firefox add on sdk
I failed to inject CSS in firefox extension. Here is my code.
var tbb = require('toolbarbutton').ToolbarButton({
id: 'button',
label: 'us-button',
image: self.data.url('img/on.png'),
...
0
votes
0answers
23 views
how to disable webpage when panel is shown using add-on builder?
I am developing a Firefox add-on using Add-on SDK. I want to prevent user to interact with webpage when my panel (modal pop-up) is shown. Is there anyway to set a background image to protect user from ...
1
vote
2answers
49 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
37 views
Mailto-link as menu-item in toolbarbutton-menu possible?
I'm using Erik Vold's toolbarbutton API with Mozilla's Addon-SDK and was wondering if there is a way linking a menu-item in order to open a mail programm onclick.
For a widget this is trivial since I ...
0
votes
1answer
41 views
Thunderbird extension console logging
I have the following code in my bootstrapped Thunderbird add-on main.js file:
exports.main = function() {
console.log("abc");
};
When I run this code in FireFox in Add-on Builder, I get this ...
0
votes
0answers
31 views
Firefox addon, how to remove attached contentscript
when the widget is clicked it opens a page with empty form fields and fills them with the list of opened tabs. It works every time you click, but the worker behind it tries to execute that code even ...
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
0answers
24 views
Dynamically load widget panel based on active tab content
The idea is simple: I want to load a panel based on the page that I'm currently browsing. Basically, I'm sending the URL of the active tab to my API which returns some stuff that is to be displayed, ...
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 ...
1
vote
1answer
95 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
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", ...
0
votes
1answer
29 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
49 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 ...
1
vote
1answer
62 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
110 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
68 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
42 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
53 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 ...
0
votes
0answers
29 views
How to inject several content scripts in the top frame and the other into all
I need to inject several content scripts into top frame only and the other into all frames. For ex. to inject JQuery into all frames and top-frame scripts should be able to use it. With the code below ...
1
vote
2answers
48 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 ...
1
vote
1answer
31 views
“This widget ID is already used” when using “request”
I need to check something with request on every page and load widget when data is correct.
The problem is strange - widget is loaded twice the second time I reload page.
var widgets = ...
1
vote
1answer
49 views
External database on Firefox Addon SDK?
I am new to developing Firefox Extension.
I planned to make something like a web annotator extension, and people can share the notes on different computer. I am thinking to put the notes on an ...
0
votes
1answer
39 views
How to access HTTP Authentication dialog using Firefox SDK
I am writing a Firefox add-on for Linux users to pass credentials for NTLM authenticated sites.some what similar to AutoAuth which is written using XUL framework
...
0
votes
2answers
555 views
Get current URL
I'm looking to get the current url of the selected tab in firefox, I've got a Firefox SDK Panel directed at a contentURL and I've been using Javascript to try and fetch the current url;
...
0
votes
1answer
47 views
How do I display a link in a panel on my Firefox Extension using the Add-on SDK?
I'm currently making a Firefox extension using the Add-on SDK (widget).
What I'm trying to do upon the widget being clicked is: Identify all addresses on a webpage, highlight the addresses, and ...






