Tagged Questions
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 extensions.
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. ...
5
votes
2answers
474 views
Firefox Jetpack Development Debugging
So, I'm working with some JS in Firefox and also working with the jetpack sdk. I am working in a JS editor, and then I run the sdk through the command line. However, when there is a bug there is no ...
5
votes
3answers
458 views
Creating a new Firefox add-on: XUL or Jetpack?
If you were going to start developing a new Firefox add-on today, would you still use XUL/JS or would you start using Jetpack, the new add-on framework?
The XUL way of creating add-ons will continue ...
4
votes
1answer
187 views
Using XPCOM components from Mozilla Add-on SDK
I have worked on Mozilla Add-on Development in the past(Beginner Level). But on encountering XPCOM, i got really scared and left it in the middle.
Recently only I encountered Add-on SDK and found it ...
4
votes
2answers
153 views
How to filter out iframes in a Firefox Jetpack extension?
The main problem is that my extension is loading into every iframes on a target webpage. It puts buttons that appear inside the iframes as well. I want them to disappear. The window and document ...
4
votes
1answer
117 views
Exception “Component is not available” when iterating over window object's properties
I'm trying to convert a Google Chrome extension to Firefox using Addon SDK (Jetpack). The following code (run as content-script)
var property, winProperties = {};
for (property in window) {
...
4
votes
4answers
398 views
How to get info from another website from my HTML page?
What is needed is as follows:
I have an HTML webpage and I need to access another website and get something from its source code.
I want to run something like
link = "http://www.google.com";
...
4
votes
3answers
474 views
Mozilla Jetpack: multiline notifications?
I just started playing around with Mozilla Jetpack, and I love it so far. I wrote a little code that displays an icon in the statusbar that, when clicked, brings up a notification:
var myTitle = ...
3
votes
2answers
223 views
Using JetPack to add toolbar buttons? Integrating XUL and JetPack for Firefox Add-ons?
I have already coded most of a Firefox add-on using the JetPack API. I am now discovering that jetpack might not be powerful enough for my purposes. I need two things:
1) A drop down button in the ...
3
votes
1answer
116 views
Creating menus in browser menubar from jetpack extension
I am building a simple firefox extension using the jetpack sdk 1.0.
Scouring the docs and googling a lot, I couldn't find a way to create a simple menu under the browser's tools menu. Jetpack has a ...
3
votes
1answer
94 views
How do you detect when a Jetpack panel has been shown?
The documentation (https://addons.mozilla.org/en-US/developers/docs/sdk/1.0/packages/addon-kit/docs/panel.html#show) says
show
This event is emitted when the panel is shown.
So in main.js ...
3
votes
1answer
99 views
jQuery only defined in contentScripts?
Is jQuery only available in contentScripts? like
tabs.activeTab.attach({
contentScript: 'jQuery("body").html("<img src=\'' + imgdata + '\' />")'
});
cos when I try using jQuery outside, I ...
3
votes
1answer
342 views
Weak reference in Firefox JavaScript chrome code
Suppose I'm writing a class A in my Jetpack-based library (i.e. we're talking about chrome/extension code):
function A() {
//constructor
}
A.prototype = {
//class members
};
The user creates an ...
2
votes
1answer
20 views
Making Ajax Request From PageMod ContentScriptFile
I am building this in beta builder and I am really lost as to how to get an ajax call to happen inside my contentScriptFile. I want to pull an ajax request to dynamically pull databack into script so ...
2
votes
1answer
92 views
Storage Options with Mozilla ADDON-SDK
I am a newbie to Addon-SDK. I am making an Addon in which i log some
information meant for manually viewing later on. I came across the
Simple-Storage API but as far as i could figure out, it saves ...
2
votes
1answer
111 views
FF extension - getting xmlhttp.status==0
I'm writing an extension for FF and it is calling using "PageMod" to the js file that contains:
function handleServerResponse() {
if (xmlHttp.readyState == 4) {
if(xmlHttp.status == 200) {
...
2
votes
1answer
71 views
Opening a page after firefox extension install with jetpack
I am trying to do something similar to this post:
Firefox extension opening a page on install
but im using jetpack.
I can't seem to find a way to do this by using jetpack's library.
Where would ...
2
votes
1answer
135 views
Firefox addon change about:blank
I would like to change the about:blank page to the url of my firefox addon homepage page.
how to change the default new tab url or can I give a new tab a default url?
Im using the firefox ...
2
votes
1answer
74 views
create menu for add-on button
I am a newbie in Firefox extension development and I intend to start creating an add-on using the beta version of the add-on builder. So far using the getting started tutorial I managed to create a ...
2
votes
4answers
273 views
How to share code between ContentScript and Addon in Firefox Jetpack extension?
I'm writing an extension for Firefox 4+.
I have some code in a file named utils.js which I'd like to call from both the Addon's main.js and from the PageMod's ContentScript.
Is it possible to ...
2
votes
1answer
107 views
Jetpack and cookies
I'm developing an addon using Jetpack and the SDK. I am using cfx to run my addons when testing.
The app posts some text when highlighted to twitter.
The problem is each time I modify the code I ...
2
votes
1answer
208 views
Mozilla “Jetpack” Add-On: Anchor Panel to Widget
I'm making a Jetpack extension in which a widget opens a panel. Clicking the widget opens the panel as expected (anchored in the lower-right corner to the widget). But if I call widget.panel.show() ...
2
votes
1answer
230 views
How to pass out ContentScript data out to a module-global variable in JavaScript?
I been working on a firefox extension project and now I'm stuck on this,
var abc = 123;
var pageMod = require("page-mod");
pageMod.PageMod({
include: "*",
contentScriptWhen: 'ready',
...
2
votes
2answers
134 views
What are Mozilla Labs' Jetpack IO capabilities?
Are you able to access your file-system, using Jetpack, and do operations such as creating or reading files or saving images?
1
vote
1answer
38 views
how to convert firefox jetpack extension -> to firefox addon sdk extension
I'm using Add-on Builder Beta (Firefox) and I'm trying to do something like this:
(There are 3 sections in Addon Builder: Lib, Data, Libraries)
Get "def.htm" file from data section and open it in ...
1
vote
1answer
92 views
Firefox Addons SDK - How to access simple storage from content script?
I am using the new FireFox Addons SDK to develop an extension. I have a widget, with a panel attached. The panel is used for controlling preferences, so I need to access simple-storage api from the ...
1
vote
1answer
74 views
Firefox-Addons/Jetpack: Page-Mod of Non-HTML Files
I am trying to start writing a basic firefox addon that allows the correct display of markdown files.
Unfortunately I can't even get the first step of the process to work.
I have a basic
var ...
1
vote
1answer
92 views
How to access window and document in Mozilla JetPack
I want to get active window's cookie information in a JetPack Addon. How can I do this? I couldn't find any method in documentation that has access to window or document. Also in some forums, folks ...
1
vote
1answer
86 views
Event Listeners to know when a page is Bookmarked/Downloaded
Is there any way to track when a page is bookmarked or downloaded in Firefox? I
mean is there any event that is triggered on bookmarking or
downloading a page? I am using Add-on SDK for developing ...
1
vote
1answer
133 views
How do you run a content script on a panel using Jetpack?
I am using the following code to create a panel (in main.js):
var panelLogin = require("panel").Panel({
contentURL: data.url("login.html"),
width: 800,
height: 500,
contentScript: ...
1
vote
1answer
63 views
Using Jetpack how do you give a page in the data folder access to the require function?
I'm new to using Jetpack. I wanted to open a tab from main.js so I did:
tabs.open(data.url("page.html"));
But how do I give the page that opens access to the require functions I have a value stored ...
1
vote
1answer
102 views
addon-builder accessing local resources
Is there a way i can access local resources inside a script?
I need to access data.url('layout.html'), data.url('icon.png') and data.url('style.css') inside the contentScript handler.
exports.main = ...
1
vote
1answer
113 views
Adding tabs into Mozilla's Jetpack Panel module
Firefox extensions made in XUL had a nice Tab element. But with Jetpack, I see nothing that would allow me to make tabbed content in a panel module, for example.
I understand that Jetpack uses ...
1
vote
1answer
290 views
Setting up Mozilla JetPack “The system was unable to find the specified registry key or value”
I am getting the below error ...
D:\Setups\Mozilla JetPack SDK\bin>activate.bat
ERROR: The system was unable to find the specified registry key or value.
Traceback (most recent call last):
File ...
1
vote
1answer
94 views
How to communicate between addon process and panel page in Jetpack
What is the best way to send a variable to a panel? Do people use mustache.js? Right now I am able to load an HTML file but I am not able to communicate with it once i call panel.show()
1
vote
1answer
61 views
Does Jetpack still work with Thunderbird? If so, where's a simple example?
From what I could tell, the early versions of Jetpack supported developing plugins for both Firefox and Thunderbird, but the current site only mentions Firefox 4.
Did they drop support for ...
1
vote
1answer
791 views
Changing the Theme at Run Time
I use JetPack theme and set it from App.xaml:
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary ...
1
vote
2answers
57 views
How to update script developed with Jetpack SDK
I would like to use Firefox standard add-on update to update my script developed with Jetpack SDK, but how?
1
vote
2answers
193 views
xpcom/jetpack observe all document loads
I write a Mozilla Jetpack based add-on that has to run whenever a document is loaded. For "toplevel documents" this mostly works using this code (OserverService = require('observer-service')):
...
1
vote
1answer
438 views
How to replace a javascript file request with contents from another file in a FF addon?
I'm looking for some guidance on how to replace requests for a specific javascript file with another file that I'll package with the Firefox addon.
1
vote
2answers
90 views
How to Split strings in Mozilla Jetpack
Well , i have tried Split("?") and Split('?')
both give the same error ( link.split is not a function) , so i assume that there is a way to be able to split in jetpack but not using this Split ?
...
1
vote
1answer
527 views
How do I style a Jetpack status bar panel correctly?
When I create a status bar panel in Mozilla Jetpack, it looks like a featureless grey box which "interrupts" the status bar, as it lacks the borders/shading/etc. that make it look like a normal status ...
0
votes
0answers
120 views
Listen to URL location firefox extension JetPack
I need to detect when the user changes to a PDF page, for example: w4 Form
I know how to get the URL of the current page by the following.
I can either use document.location.href or document.URL
...
0
votes
1answer
162 views
How to keep a contentScript working when its jetpack panel changes location
In a Firefox extension using jetpack, I have a panel with a contentScript attached. The panel is set to initially display an URL. If the panel changes its location (through a click on a link or a ...
0
votes
1answer
283 views
HTML5 canvas drawWindow on FF4/JetPack error
I borrowed code from thumbnail.js modified it so that it takes screenshot of the entire page (at least thats the idea)
Code:
function takeScreenshot(window) {
const { Cc, Ci, Cu } = ...
0
votes
2answers
410 views
Mozilla JetPack - Javascript framework (RightJS) as content-script in a page-mod
I'm new to the jetpack world (and firefox extension for that matter)
and while doing some research on the possibility of jetpack, I found
something strange. I did a simple test project that included ...
0
votes
0answers
116 views
Firefox Jetpack Addon: selection.parent?
I'm trying my hand at building a simple jetpack using the handy Addons
Builder Preview. From the Selection documentation there seems
to be no way to get the parent element of what the user has ...
0
votes
1answer
161 views
How to use jetpack.storage.setting in Jetpack SDK 0.9
When we use Jetpack 0.6, we could manifest something like this,
var manifest = {
settings: [
{
name: "foo",
type: "group",
label: "Twitter Account",
settings: [
...
0
votes
1answer
599 views
Problem Styling SL Toolkit Accordion with Jetpack Theme
I am trying to use the newly released Jetpack theme for a Silverlight 4 application. TabControl and buttons style nicely, but I cannot get the Accordion control to pick up the Jetpack style.
I have ...
0
votes
2answers
116 views
finding visited links in a jetpack extension
Is there way in jetpack(mozilla's extension development framework) , to find the the visited links in a page?
BTW: jquery's a:visited works in firebug , but not in jetpack. i'm guessing
it's part of ...