0
votes
0answers
5 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
0answers
7 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
17 views

iframe inside XUL Panel not reloading everytime

In a firefox extension i have a panel that is attached to a toolbar button. Inside that panel i have an iframe with some content. When i first load firefox, i click the toolbarbutton and it loads ...
0
votes
0answers
17 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 ...
0
votes
1answer
55 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
20 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"> ...
0
votes
1answer
26 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
0answers
37 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
69 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
votes
0answers
35 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 ...
0
votes
1answer
46 views

Passing values to iframe inside xul panel

I am creating a firefox extension that has a button on the toolbar that will show below custom content that i will set. I was using a XUL file to create the structure of this content, and i was ...
1
vote
1answer
31 views

Is it possible to remove the triangle from firefox toolbarbutton with type=“panel”

When developing a firefox extension to show a panel below the icon, the toolbarbutton with type="panel" puts a little triangle inside the button. Is it possible to remove this triangle and keep the ...
0
votes
1answer
26 views

Why is the width attribute of a XUL button ignored?

I have problems to set the width of my XUL button. I have this code: <button label="Ok" width="16" maxwidth="16" height="16" maxheight="16"/> By with that code, the size of my entire window ...
0
votes
0answers
24 views

Changing the CSS of a selected toolbarbutton in XUL

I have a set of 3 toolbarbuttons that will be used to show/hide 3 vbox elements based on which toolbarbutton is clicked as in Clicking on tolbarbutton-1 will show vbox-1 and will hide the rest of the ...
0
votes
1answer
64 views

XUL/Firefox: create new browser window on addon load

I'm developing bootstrapped Firefox addon. In my startup function I am constructing new instance of object, that creates new Firefox window with the following code: function createWindow (cb) { ...
1
vote
1answer
48 views

Failing to load overlay in xul application

I have a stand-alone xulrunner application, that needs extension to work properly. But after I install xpi file, my jsconsole is reporting me an error "Failed to load overlay from ...
0
votes
1answer
26 views

XPIDL (typelib.py) type not found error

I am trying to build a Firefox extension that makes use of IDL. However, the build dies with this error: [apply] Executing 'python' with arguments: [apply] ...
5
votes
1answer
92 views

How can I access a newly-opened tab's window object? [in a firefox extension]

I'm attempting to convert a Greasemonky script to an extension for Firefox and I'm trying to make my extension automatically attach a simple script to any webpage when a new tab is opened. I'm ...
0
votes
0answers
14 views

How to display a div with XUL?

How to create a menu or similar that works like a div with freely images and images acting like buttons to show other div's with XUL elements? I know the menupop and so on... but is there a way to ...
0
votes
1answer
34 views

Checking and unchecking menuitem in a Firefox add-on with jQuery

I have a <menuitem type="checkbox" checked="true" label="Enabled"> element in the Firefox add-on I'm working on. I'm using jQuery to set and unset the checked attribute, like so: var element = ...
0
votes
1answer
61 views

Why is gContextMenu null?

This is a condensed version of my code. I was trying to show a menu item in the right-click context menu of firefox. Here gContextMenu is showing up as null, and it screws up the firefox's context ...
0
votes
1answer
66 views

how to inject text into a textbox with firefox extension

This question was probably asked few time by now... but I didn't find any solution in the last 2 days so I'm asking it in here. I need to inject some text into a textbox that has an ID and I already ...
0
votes
1answer
43 views

How to to add a menu separator for a menuitem in firefox's context menu

I am trying to add a menu separator before and after my menuitem in firefox's contextmenu . This is my expected output... | | | | |Select All | ...
0
votes
2answers
89 views

firefox plugin - How to hide a tab browser and getting its content

I am developing a plugin for firefox. In which i have to open a hidden tab and access its content through javascript and close it afterwards. Following is the code i am using for accessing content ...
0
votes
0answers
15 views

firefox extension / link _blank in google search

How add a link to google search, with redirection to mine website? Example below: 1) someone search in google for "cars" 2) under search box & "About 792,000 results (0.23 seconds)" appears a ...
0
votes
1answer
33 views

no effect on: appShellService.unregisterTopLevelWindow(topXulWindow); (hide window)

I overlay chrome://browser/content/browser.xul with an .xul adding a button to the main-menu. clicking it opens another ChromeWindow with a .xul-window. var ww = ...
0
votes
1answer
47 views

Find out whether current request is a proxy request in firefox?

I need to automatically perform authorization with a proxy server using an addon. I also checked out the source of other extensions that do that, and they do it like this: var httpRequestObserver = ...
0
votes
1answer
64 views

How do I place shadow under XUL popup panel

I'm trying to place a shadow under a popup panel that defined as follows: <popupset id="mainPopupSet"> <panel id="autoTagBookmarksPopup" noautohide="true" fade="none" backdrag="true" ...
0
votes
2answers
127 views

Firefox/XUL: coords of DOM Element on display

I'm developing Firefox extension. For some statistics I need actual display coordinates of DOM Element inside browser. I can get coordinates of: Required DOM Element inside viewport by calling it's ...
1
vote
1answer
124 views

firefox add-on develop | rewrite browser.xul

I want to develop a Firefox add-on that change the whole UI, something like write new chrome://browser/content/browser.xul file. I'm js developer, have no experience with add-ons development I didn't ...
0
votes
0answers
42 views

ff-ext, have a real <browser> in new window (avoid XUL; use XPCOM/sdk only)

I am absolutely new to FF extension-development and reading a lot currently. Coming from Mozilla addon SDK (that i am using right now), to reading about XPCOM, XUL and how extensions are built in it's ...
1
vote
2answers
82 views

How to setup a setting whereby a user can select which type of alert they wish to display in JavaScript

I have a Firefox AddOn that displays various alerts. Is there a way in which I can setup the user being able to select which type of alert they wish to use? Currently I have two types of alerts. The ...
0
votes
1answer
61 views

XUL: how to persist a value of a textbox?

I have a Firefox extension that contains a textbox: <textbox id="exclude-text" flex="1" rows="10" multiline="true" style="min-width: 25em;" wrap="off" value="0" persist="value"/> A user ...
1
vote
0answers
38 views

Firefox Extension: How to refer a file in the profile directory as a datasource from XUL?

Say I'm writing a Firefox extension/add-on and I've got some user data stored in a file (XML or RDF format) in the user's profile directory. I want to use that data as a datasource for a XUL template. ...
1
vote
1answer
102 views

Notification box positioning in XUL

Currently I have a XUL notification box being displayed as I am developing a Firefox Addon. At the moment the notification box will only display at the bottom of the browser and cannot find any ...
0
votes
1answer
77 views

Getting a contentscript from browser.messageManager.loadFrameScript to listen for post message events

So I have my own xul interface containing a xul browser, and it needs to load a webpage from my website. Depending on the webpage, I'd like it to call window.postMessage, which my contentscript ...
2
votes
1answer
51 views

Firefox Extension - Call function when text is highlighted

I'm currently writing a Firefox extension that allows the user to highlight a phone number and then call it using a button from the context menu. At the moment the context menu just says "Call Number" ...
0
votes
1answer
95 views

no chrome folder in firefox directory

I was hoping to learn XUL overlay in firefox browser. Tutorials suggested me to create a xul file and edit manifest file in chrome folder to perform overlay. But i just cannot find any chrome folder ...
0
votes
0answers
77 views

Reopened floating XUL panel is not usable on Mac

When I call openPopup() on a XUL panel for the first time, it works as expected. However, if I then call hidePopup() and then openPopup() again, it opens but is not usable. All user interaction is ...
2
votes
1answer
57 views

XPCOM stub files

1- Is there any XPCOM stub files (javascript) that can be used by PHPStorm for code completion? 2- Is there any way to facilitate FireFox plugin development in PHPStorm? 3- How can I set FireFox as ...
0
votes
1answer
72 views

How browser stores the location of visited pages in its History?

I am trying to create my own back/forward buttons, so I tried to store visited pages inside an javascript array, but I find that it is hard to maintain visited page locations inside an array. Can ...
0
votes
1answer
78 views

Access simple-prefs from xul window

I want to access the simple-prefs module from a XUL settings dialog. My code looks as follows. var WINDOW = Cc["@mozilla.org/embedcomp/window-watcher;1"].getService(Ci.nsIWindowWatcher); var ...
1
vote
1answer
75 views

How to create own Back/Forward buttons in xul?

Trying to create my own Back/Forward buttons in xul. My Code: <label value=" ❀ Back " id="back_button" style="-moz-border-radius: 20px; -webkit-border-radius: 20px; -khtml-border-radius: 20px; ...
0
votes
1answer
259 views

Show an item in context menu only when it clicked on an image in FireFox

I'm trying to get my item in a the context menu to be shown only when it was clicked on an image this is my emailpicture.js code: function showHideItems(event) { var show = ...
0
votes
1answer
82 views

Cleaning up event listeners for dynamically created XUL elements? [closed]

About a month ago, I asked a question on how to properly set events for dynamic XUL elements. Now that I know how to set them up, I'm wondering about what needs to be done when tearing them down. ...
2
votes
1answer
125 views

Get Firefox to run XUL type script on startup

With Firefox 17.0.1 I am using an add-on called KeyConfig 20110522 to set some new hot keys and also set the acceltext of menuitems for my new keys as well as for add-ons that do not bother to do so. ...
0
votes
1answer
185 views

Firefox extension both bootstrap and content

I want to create firefox extension using both bootstrap and chrome/content. When I've installed this extension first time, firefox ignored the components and overlays. And then I've turn off and turn ...
2
votes
0answers
133 views

Expose file writing to a webpage with a Firefox extension

I have a web application that my client uses for the cash registry. What I need to do is to create a local file as the cash register's software needs to read from that file in order to print. Until ...
2
votes
2answers
155 views

How to align text to the right on an xul listbox column?

In my firefox xul window, I have a listbox. I need the first column to be right-aligned and the second to be left-aligned. I tried adding text-align:right; to the css, or directly in the xul, ...
1
vote
1answer
39 views

XUL listbox.insertItemAt fails after several opening and closings

I have a sidebar extension that I'm working on. The problem I'm encountering is that when that sidebar is opened, it goes through some initialization. This requires populating a list. I have an ...

1 2 3 4 5 10