Tagged Questions
0
votes
2answers
107 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.
...
1
vote
1answer
98 views
Intercepting keyup events in Firefox from an addon
For purposes of recording Selenium scripts, I need to be able to intercept all events on a page, such as keyup or click. Currently, I do this by attaching an event listener to all elements on the ...
0
votes
2answers
178 views
Usign gBrowser and observerService to find a tab on startup
I'm trying to create a firefox addon that will look for a certain page on startup and grab some info from it. I'm having trouble finding the page at load. Here's what I have so far:
var myfancyaddon ...
-1
votes
1answer
126 views
Trouble accessing a XUL element from JavaScript
I am having problem to access an element in my file.xul using DOM methods as given below if I do it inside the function someone.listen_request().
But it works fine if I do it inside the ...
0
votes
1answer
208 views
How to dispatch scroll UIEvent on an IFrame in a Firefox addon?
I need to emulate the scroll event on an iframe in my Firefox addon. I used the code below, but it doesn't work and iframe scroll won't move. And another question for me is how initUIEvent knows which ...
0
votes
1answer
74 views
Event creation / trigger with jQuery
I currently use the following code to trigger an event from my Firefox Add-On.
var hiddenArea = document.getElementById("section_help");
if (hiddenArea) {
var evt = ...
3
votes
1answer
405 views
Activate/deactivate events when moving the window
Within my Firefox extension I'm trying to keep track when the window is actually the active window. For this, I add the following two listener to the window:
window.addEventListener("deactivate", ...
2
votes
4answers
1k views
detect click on link in Firefox
I want to detect in my firefox extension if a link has been clicked. So far, for this I add a click event listener to the window
window.addEventListener("click", function(event) { ...
0
votes
2answers
441 views
Firefox extension: window activate/deactive event
in my Firefox extension I try to handle the event when the browser window is activated or deactivated. Adding the events "activate" and "deactivate" to the window does basically work. But noticed that ...
1
vote
1answer
87 views
How can I catch file > print event in Firefox add-on?
I want to create a Firefox add-on with which I catch the "file > print" browser event for stop it. Does anyone know how to catch this event? I find in browser.xul file the command:
<command ...
1
vote
2answers
307 views
DOM Changed Event Firefox Extension
So I have created a Firefox extension and it works great, however when I submitted it (although it was accepted) it came up with one security warning. It said setTimeout() was removed in an else ...
2
votes
2answers
297 views
Adding a timer to an event listener in JavaScript
I'm having a little bit of trouble managing the load of sites in a Firefox extension.
I'm using JavaScript and developing a Firefox extension to search a string in a list of websites of my own, to ...
3
votes
1answer
164 views
Change syntax event listener in Javascript
I've written some code in Javascript which needs some transformation but I don't know how to achieve this.
my code :
gBrowser.addEventListener("DOMContentLoaded", function(e) {...}), false);
into
...
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 ...
-1
votes
2answers
277 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) {
...
2
votes
1answer
688 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 ...
4
votes
2answers
2k views
DOMContentLoaded only once
I'm using this code for firefox extension
1: var Test {
2: f: function() {
3: alert("DOM content loaded");
4: window.removeEventListener("DOMContentLoaded", function(e) { Test.f(); }, false);
...
2
votes
1answer
812 views
on tab switch event
I was looking for an event that is able to run some code after clicking (changing) tab in browser, but I haven't found it.
Is it possible to achieve this event somehow?
I'm already listening to ...
1
vote
1answer
459 views
Is it possible to run something before DOMContentLoaded?
I want to inject stylesheets and scripts before DOMContentLoaded.
In Google Chrome it is possible using run_at = document_start.
Is there something similar in Firefox addons? Can I run things before ...
0
votes
1answer
493 views
FireFox Toolbar Prefwindow unload/acceptdialog Event to Update the toolbar
I'm trying to develop a firefox toolbar ;)
so my structure is
In the options.xul is an PrefWindow which i'm opening over an
<toolbarbutton oncommand="esbTb_OpenPreferences()"/>
...
1
vote
4answers
1k views
How to find out if DOMContentLoaded event comes from iframe or not?
I am working on a firefox extension and it uses something like this:
function myExt()
{
this.handleEvent = function (event)
{
switch (event.type)
{
case ...
0
votes
0answers
142 views
Mozilla addon mouse wheel link open
I have implement mouse click event as below.
element.addEventListener('click', theApp.myclick , false);
But, this event doesn't captured link open in mouse wheel and right click. Is the any other ...
1
vote
2answers
1k views
How to capture change on page title from a firefox extension
Is there a way to capture when a website title changes from a firefox extension?
3
votes
2answers
1k views
Is it okay to call canvas.drawWindow() from the “onload” handler?
The note at the bottom of this Mozilla wiki page currently says: "Using canvas.drawWindow() while handling a document's onload event doesn't work. In Firefox 3.5 or later, you can do this in a ...
2
votes
0answers
345 views
on page load event of *not the focus* tab in Firefox extension
I develop firefox extension and using the "load" and "DOMContentLoaded" events to raise when document was fully loaded.
My problem, however, is that my 'content' variable is always pointing to the ...
3
votes
1answer
3k views
Detect page load completed event in Firefox
I'm writing a Firefox add-on that do something after the webpage is completely loaded.My current code is
var target = this;
const STATE_STOP = ...
1
vote
1answer
385 views
Problems with registering click event listener to a frame-element
I ran into a problem with adding an event listener. I wrote a Firefox plugin a while ago for my bachelor thesis. It was based on a different attacker model than you would normally expect. In this ...
2
votes
4answers
586 views
How to modify web page elements loaded in a browser
I want to associate some actions with keys (of a keyboard) and then modify the contents of a webpage loaded in the browser. For example, I'll write a firefox plugin and that would be listening to some ...
0
votes
2answers
128 views
firefox toolbar event
Does anyone know who to find an event occurrence on a toolbar in firefox.
I want to do event logging on toolbar in firefox.
Thanks
2
votes
3answers
1k views
How to get tab in TabOpen event with Firefox FUEL?
I'm writing a firefox extension and really need to listen on TabOpen events and get some details about tab that was opened. But I can't figure out how do I get an actual tab from event object that my ...