0
votes
0answers
13 views

“document_start” for IE addon?

This is with reference to "document_start" for Firefox addon? what is the equivalent document_start for IE addon? I want to execute a javascript file in my ie addon at the start of ...
0
votes
1answer
79 views

Why is my javascript becoming undefined every time I click on my toolbarbutton?

I'm trying to create a simple extension that alerts the mouse click (mouseup) coordinates every time a button is clicked. (A learning attempt) The extension is working alright and is setup right, ...
1
vote
2answers
73 views

How to use visibilitychange event on Firefox Extensions

I'm trying to learn how to make a firefox extension. I want to create a toolbar that only shows up on a specific page. I can make the toolbar appear, but then it should become hidden when I open or ...
0
votes
1answer
84 views

Adding css file to page with extansion's init

I'm reading this tutorial That is how css file is loaded: var linkTargetFinder = function () { return { init : function () { gBrowser.addEventListener("load", function () ...
1
vote
2answers
159 views

How to organize a two-way communication with the Firefox extension code injection?

There is an extension for Firefox, which makes the injected JS code into the page. Code for XUL: window.addEventListener("load", function load(event){ document.addEventListener("TestEvnt", function ...
3
votes
1answer
298 views

Firefox extension is sending javascript Array as an Object instead

I have problem passing JavaScript arrays to an Add-On, which I'm writing in Add-on Builder. To communication I'm using events and sending an event with an array, but the Add-on (Content Script) gets ...
1
vote
1answer
127 views

Change javascript in a firefox extension overlay

I wrote an extension for firefox with an overlay. When I click on the principal button, the extension loads entconnect.entImmediat, but when I click on "Changez vos identifiants", the extension ...
0
votes
1answer
52 views

Call a page-specific function on an opened page

In a Firefox extension I am currently developing using the addon builder, I open a page in a new tab and I would like to call a JS function defined in a script on this page. For this I use this code: ...
5
votes
2answers
257 views

Emit message to add-on from content script onbeforeunload?

I have a content script which times how long a user views a page. To do this, I inject a content script into each page, start a timer and then emit a message back to the add-on when the onbeforeunload ...
0
votes
1answer
89 views

How to track Window Minimization/Maximization using Addon SDK?

How can i determine when a window is minimized and revoked(maximized) using Addon SDK? Apparently i am calculating the user browsing time so i need to start and stop timer on window maximization and ...
0
votes
1answer
49 views

alternate for document-start in opera browser

I have seen "@run-at document-start" and "contentScriptWhen: 'start' " in firefox extension(or userscript). all these statements are used to run some scripts, while the webpage start loading in ...
1
vote
1answer
163 views

How to override preventDefault/stopPropagation in Firefox addon

I am writing a Firefox addon (in Javascript) and have a need to override the preventDefault and stopPropagation on all the Event objects (Keyboard, Mouse, HTML, ...). I intend to call the original ...
0
votes
2answers
108 views

Firefox extension: observing “user-interaction-inactive” across multiple browser windows

I'm trying to observe within my Firefox extension when a user is inactive. My current solution is derived from a similar question, found here (see accepted answer). And it basically works just fine. ...
0
votes
1answer
62 views

exension notificaion when there is change in browser window size

I've developed a firefox extension that needs to be notified whenever there is a change in the browser window size. I used gBrowser.addeventListener("resize",my_funcion,false); in my .js file of ...
0
votes
1answer
1k views

browser window minimize/maximize event [duplicate]

Possible Duplicate: Firefox extension: check if window is minimized I've written a Firefox extension that need to be notified whenever you minimize/restore the browser window. What ...
0
votes
1answer
83 views

Are events generated by Firefox extension 'trusted'?

My Firefox extension generates events, e.g. click. In response, the web application tries to open a new window. However it's getting blocked by Firefox as Popup blocker kicks in. However, if I ...
0
votes
0answers
113 views

Javascript Events in Firefox add-on behave differently if Web Console open

I am creating a Firefox add-on that iteratively loads a collection of URIs. I have created a menu item that calls a function (shown below). I have setup an event listener to execute when the page, ...
1
vote
2answers
648 views

How to properly receive the DOMContentLoaded event from an XUL iframe?

I'm working on a minimal Firefox extension that loads a web page into an XUL iframe. (I also tried the html:iframe, but met identical results.) The page may take some time to load completely - and ...
0
votes
1answer
133 views

Nested popups, trouble with popupshowing event

I'm developing a Firefox extension, and I have a toolbar button that displays an overlay in which I put some XUL code inside ToolbarDisplayManager: <overlay id="custombutton-overlay" ...
12
votes
2answers
3k views

Using Firefox, how can I monitor all JavaScript events that are fired?

I'm trying to debug a webpage that makes heavy use of JavaScript events, and so I need to monitor all JavaScript events that are fired. Most of the events are bound using jQuery. Hence, it would be ...
3
votes
1answer
517 views

Firefox extension: check if window is minimized

I'm trying to keep track of the state of a Firefox window ("maximized", "minimized", "normal", "fullscreen"; see here). However, whatever I've tried, I never get to see the minimized event; the others ...
0
votes
1answer
99 views

Firefox/Javascript: detect click on history bookmark entries

Within my Firefox extension I'd like to detect the source of a page load, for example, after clicking on a link, a history entry or a bookmark. So far I've manage to detect the click on a link and ...
3
votes
1answer
320 views

Simulate a Keystroke in firefox addon

I want to be able to simulate a keystroke from my firefox-addon and at the moment i'm not being able to do that. I found this post Why simulation of Left Arrow + Shift keys doesnt work in Firefox? ...
0
votes
0answers
315 views

Why simulation of Left Arrow + Shift keys doesnt work in Firefox?

I need to simulate left arrow + shift keys and i used the code below, but its not working. And i'm sure event.keyCode = 37 and event.charCode = 0 values are correct and event.shiftKey is true. Note ...
1
vote
2answers
141 views

Detecting tab closed (after closed) from firefox extension

I'm trying to get my firefox extension to create a url list from all tabs in the browser. To keep the list updated I need to know when a tab has been closed. I've tried using ...
0
votes
1answer
206 views

How to disable expand/collapse on double click in XUL table

I have a XUL tree in my Firefox extension. When I double click on a row, the row collapses or expands. How can I disable this behavior (so that collapsing and expanding can only occur by clicking on ...
0
votes
2answers
139 views

Listening for value change of a variable in firefox extension?

Is there a way for listening for value change of a variable in javascript(Firefox extension)? [update] I am having an array I want to listen. Whenever something is pushed into that array, I want my ...
3
votes
1answer
493 views

Is it possible to create a browser extension to allow for incoming requests?

I am looking to figure out a way to make incoming request to a browser. Installing an extension in the browser is OK. The goal of this is to allow another machine to connect to the extension to ...
-1
votes
2answers
407 views

switching tab in the firefox extension

I wanna know a tab event for firefox extension to cature the event of switching from new tab to the older tab. I wann know event for switching from the new tab to the old tab.
0
votes
1answer
147 views

how to create a new tab in the firefox extension and get the elements of the tab

I want to create a new firefox extension where the new tab elements can be accessed specially the popup. var win = Components.classes['@mozilla.org/appshell/window-mediator;1'] ...
1
vote
1answer
388 views

Accesing DOM with pages using AJAX (Firefox extension)

I'm trying to learn to create extensions with Firefox but I'm running into some issues and I hope someone more experienced could give me some tips. The idea was doing a dummy extension that would ...
0
votes
2answers
72 views

Accessing every document that a user currently views from an extension

I'm writing an extension that checks every document a user views on certain data structures, does some back-end server calls and displays the results as a dialog.The problem is starting and continuing ...
0
votes
1answer
202 views

Issues with “load” event handler in Firefox Extension Developement

I'm writing a firefox extension, but have issues with user interaction because of getting the right events properly. My extension shall complete the following tasks: check the currently viewed ...
0
votes
1answer
209 views

Event occurring in same tab, while opening a link from active tab to new tab in fire fox extenion

var extension= { check_domain : function(domain){ //checking the domain name where event should occur........ }, on_load: function(e) { var doc_event = e.originalTarget; ...
0
votes
1answer
197 views

How do I determine that all tabs have been loaded in Firefox?

I am writing a Firefox add-on and I need to be able to run some code after all the tabs have been loaded. I tried something like: window.addEventListener("load", function(e) { ...
-1
votes
1answer
281 views

Function call not working in Javascript code for Firefox extension when using the Google box

I've written some code which works fine except that for un unknown reason a function does not work (the function is not called as if not existing). The aim of my code is to detect if I'm using Google ...
-1
votes
2answers
280 views

dblclick event does not work

I'm using the following code in firefox extension, that should alert when double click event occur, but when I double click nothing happens. var Test = { x: function(e) { ...
0
votes
1answer
812 views

Firefox extension: run when page loaded

I'm trying to write firefox extension which will run when (specyfic) page is loaded (it will be same key words replace). I write code like: window.addEventListener("load", function() maApp.init(); ...
2
votes
1answer
690 views

Find the position of an event(mouse over on a button), for fire fox extension

I need to find the position of an event(mouse over on a button), for fire fox extension. I have been using var obj = $mb(e.target,doc).offset(); var left = obj.left; var top = obj.top; But the ...
0
votes
2answers
1k views

eventListener not catching keypress event with Javascript

I've written some code to check if a user launches a search on Google (clicking on the Search button or typing Enter). My code works fine (it's a Firefox extension) except I can't get the code of the ...
0
votes
1answer
50 views

How to specify when an event should run?

Having some (dirty old) code that does basically the following <overlay id="slomozOverlay" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> <dialog ...
2
votes
2answers
485 views

Firefox javascript, stop script

Basically, this script checks if the user is running a certain addon, if yes, it shows an alert... the problem is after it shows the alert Firefox's spinning wheel keeps spinning like it's waiting for ...
0
votes
1answer
393 views

close the firefox application (alt + F4 or close button)

I would like to know when a user is about to close the firefox application (alt + F4 or close button). I have tried onbeforeunload , it works but only when the user presses File>>exit. I have written ...
1
vote
0answers
116 views

How to prevent javascript print from blocking other scripts

I am writing a firefox application, where I substitute content of a element for printing, i.e. when you click browser the following is done: 1)printable version is generated 2)browser navigates to ...
1
vote
2answers
406 views

send out XMLHttpRequest on closing firefox

I have a problem. I would like to send out an XML HTTP Request (XHR) from my firefox extension so that my server will know when firefox has been closed. Now the problems I found are these: onunload: ...
2
votes
2answers
666 views

Detect tabbox tab change in XUL

What's the best way to detect switching between tabs inside a tabbox? In particular, I need to detect when a certain tab is opened, and when the user leaves it (switches to another tab). I'm using ...
3
votes
2answers
835 views

Firefox Extensions: adding functionality to existing chrome XUL elements

For kicks and giggles, I'm trying to write a Firefox extension. Just a really simple one. I've gone through the tutorials I've found, and I've gotten the basic "Hello, World" app working. What I'd ...
3
votes
4answers
461 views

Is it possible programatically to use a return character in a text input box to trigger form submission?

Question: Is it possible to include some type of character (like \r or \n, or some character generated by an encoding function) at the end of a line of characters set as the value of a text input ...
2
votes
1answer
157 views

Javascript event for triggering page-defined javascript function for Firefox extension

I am writing a Firefox extension that needs to write and submit a form with a text type input box, which contains its own onsubmit function. The function is defined in the the target site, which I ...
1
vote
1answer
494 views

Why does my Firefox extension not add event handlers using jQuery 1.4.2 object pulled from webpage in Firefox 4

My Firefox extension grabs a jQuery 1.4.2 object that is already embedded on a webpage and then tries to use that jQuery object to modify that page. It worked well in Firefox 3.x, but it does not ...

1 2