1
vote
1answer
31 views

Remove MooTools events using a Greasemonkey script?

I'm trying to modify a page that uses MooTools to add event-listeners to some fields, like so: $('inputPassword').addEvents({ keypress: function(){ new ...
3
votes
1answer
118 views

Detect default event handling

Is it possible to detect whether a particular DOM event has any event handler bound to it (including browser default event handling) - within Firefox's Greasemonkey code (EcmaScript 5.1 strict mode)? ...
1
vote
1answer
148 views

How to add an “onblur” handler to a textbox using Greasemonkey?

Thanks to fellow Stack Overflow users, I have this code which works fine in a test page... Javascript: function myFunction() { var x = document.getElementById("tarea"), nameInput = ...
1
vote
2answers
319 views

How to simulate a keypress in a Greasemonkey script?

I have found lots of info online about how to use the initEvent and dispatchEvent functions, but I can't for the life of me get them to work in practice. I'm trying to get a script to press the ...
1
vote
1answer
155 views

Capturing the TAB key in Gmail and other sites that blocks the capture

Using preventDefault() on a keydown works for all keys except the tab key on certain sites like Gmail. Why is this the case? What is special about the tab key -- shouldn't it be treated the same as ...
1
vote
2answers
176 views

How to prevent a button added by a userscript [GreaseMonkey/TamperMonkey] from submitting a form

Let me start off by saying that the code in question is part of a UserScript and, as such, normal DOM rules and Javascript methods do not work. Here is the situation: I have written a UserScript ...
1
vote
1answer
87 views

When can/can't my userscript trigger a right-click (context menu) in Javascript?

I've found a lot of questions like this one, this one, and this one, purporting to show how to "simulate a right click" or "trigger the context menu", etc. Then I found this one, which simply says it ...
-2
votes
3answers
293 views

How to simulate real onchange for an element?

I have a select element that has its onchange event handled by a jQuery event listener, and its onchange attribute is empty. Triggering the onchange event by this method ...
0
votes
2answers
269 views

Using javascript to click on item with no href

Basically I am using the firefox plugin called "greasemonkey" and I am attempting to write a script who's purpose is to find a specific class specified image on each page and click on it. Provided the ...
0
votes
2answers
293 views

how to encrypt the formdata message that is sent with the submit action

I have this code that sets attribute "onclick" to all submit buttons to call a certain function. The userscript is going to run on social network sites(facebook) and encrypt the messages the users ...
2
votes
2answers
673 views

Clicking a button on a page using a Greasemonkey/userscript in Chrome

I'm going to be as absolutely verbose here as possible as I've run into a few solutions that didn't end up panning out. Please keep in mind that I don't know Javascript. I know basic HTML and CSS. I ...
1
vote
1answer
182 views

Button handling and layer visibility in Greasemonkey

I have a Greasemonkey script that I've been building for a game. The idea is to have info about the game in a div that will pop up when a button (which is added by my script) on the page is clicked. ...
2
votes
5answers
878 views

Javascript: Function is defined, but Error says.. Function is not found ! (Strange)

This is my code : function mark() { alert("This is a test box.."); } setTimeout("mark()",5000); Error : Function mark() is not found !! There is some other issue.. as it works on ...
1
vote
1answer
189 views

Hacking Google AJAX Search Result page

I am a novice developer, and have created a simple greasemonkey script to modify content at Google Search result page. Scripts loads fine at first page. but as user goes to second page (or searches ...
1
vote
1answer
122 views

Calculating Drift/Browse Time

I am writing a greasemonkey script(requires plane javascript) which requires me to calculate the drift time/browsing time of a url i.e. i want to calculate the time for which an url was active. it ...
1
vote
1answer
198 views

Modifying Google Search Results Page

I have written a greasemonkey script which will do GM_xmlhttpRequest to the next 2 pages of the google results page.. i.e. if my current page is 1 then my script will do GM_xmlhttpRequest to page no 2 ...
2
votes
1answer
672 views

Is it possible for a greasemonkey script to automate the Ctrl+A (select all) action in firefox?

Is it possible to write a Greasemonkey script to trigger the Ctrl+A (select all) action in Firefox? (after a new page is loaded if the script is enabled???) Help me at any level possible for you. ...
2
votes
2answers
2k views

Adding keylistener and using javascript to click a link in Greasemonkey

I want to create a greasy monkey script , which will add a shortcut key for logout action in one mail site. Currently the logout link "?logout&hl=en" which have an id=":r5". I am able to get the ...
3
votes
2answers
386 views

Detecting Download Status in Firefox

Is there any way to detect whether a download has completed or is how much it has downloaded , in the context of a greasemonkey script Or and extension .(i.e) how to detect if firefox is still ...
5
votes
2answers
2k views

Greasemonkey Javascript Key Press Help

So I'm currently trying to make a GreaseMonkey script that will allow a user to press left or right on their keyboard and have that go to a previous comic strip or go to the next strip. I currently ...
2
votes
1answer
605 views

Adding Javascript EventListener only if no other listener is present?

I'm a relative tyro in the Javascript programming arena, so please go easy on me. :-) I am trying to add an eventListener to various DOM elements on a page. However, some of the elements I'm adding ...