Use the Greasemonkey tag if you are using Firefox or the Tampermonkey extension for Chrome. For all other userscripts, please use the "userscripts" tag. Greasemonkey is a Firefox add-on that allows you to enhance the way select web-pages work, by running javascript (with enhanced privileges) on ...

learn more… | top users | synonyms

127
votes
3answers
105k views

Get image data in Javascript?

I have a regular HTML page with some images (just regular IMG HTML tags). I'd like to get their content, base64 encoded preferably, without the need to redownload the image (ie. it's already loaded by ...
124
votes
11answers
43k views

How can I use jQuery in Greasemonkey?

I tried putting this line but it doesn't work: // @require http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.js jQuery doesn't work in Greasemonkey at all. Is there other way to use ...
92
votes
10answers
23k views

How can I use jQuery in Greasemonkey scripts in Google Chrome?

As some of you may know, Google Chrome has put some severe limitation on Greasemonkey scripts. Chromium does not support @require, @resource, unsafeWindow, GM_registerMenuCommand, GM_setValue, or ...
24
votes
4answers
19k views

Detect iFrame embedding in Javascript

I have an application that has a certain page -- let's call it Page A. Page A is sometimes a top-level page, but also sometimes is embedded as an iframe within page B. All pages come from the same ...
22
votes
6answers
30k views

Overriding !important style using Javascript

Title pretty much sums it up. The external style sheet has the following code: td.EvenRow a{ display: none !important; } I have tried using: element.style.display = "inline"; and ...
19
votes
2answers
7k views

UserScripts & Greasemonkey: calling a website's JavaScript functions

I'm creating a UserScript extension for Firefox & Chrome and I'm trying to use some of the code in the website's JavaScript, e.g.: function: myFunction(){ return Grooveshark.playNextSong(); ...
18
votes
3answers
17k views

How can I get greasemonkey to call a function on a page after it loads

I have a very simple greasemonkey script that I want to call an already existing javascript function on the page. I've read the documentation and nothing seems to work window.setTimeout(function() { ...
18
votes
3answers
15k views

Injecting JS functions into the page from a Greasemonkey script on Chrome

I have a Greasemonkey script that works just fine in Firefox and Opera. I struggle with getting it to work in Chrome, however. The problem is injecting a function into the page that can be invoked by ...
17
votes
3answers
12k views

Greasemonkey namespace..what is it for?

I'm learning how to use greasemonkey, and was wondering what the @namespace metadata id is for. Does it have to be a web address? Or can it be a folder/directory on my computer? Does it even ...
17
votes
6answers
10k views

How to debug Greasemonkey script with the Firebug extension?

I didn't find a way to debug Greasemonkey scripts with the Firebug extension. Does anyone know how to do this ? Thanks.
14
votes
13answers
4k views

What is the best way to do web scripting/web macros?

I'm trying to streamline some of our tasks at my place of work, and it seems that quite a lot of our developers' time is spent doing semi-mechanical tasks on the web (specifically, editing online ...
13
votes
6answers
6k views

How can I intercept XMLHttpRequests from a Greasemonkey script?

I would like to capture the contents of AJAX requests using Greasemonkey. Does anybody know how to do this?
12
votes
4answers
7k views

How safe is Greasemonkey?

I've never actually used greasemonkey, but I was considering using it. Considering that GreaseMonkey allows you to let random people on the Internet change the behavior of your favorite websites, how ...
12
votes
3answers
13k views

How to implement “DOM Ready” event in a GreaseMonkey script?

I'm trying to modify my GreaseMonkey script from firing on window.onload to window.DOMContentLoaded, but this event never fires. I'm using FireFox 2.0.0.16 / GreaseMonkey 0.8.20080609 This is the ...
12
votes
3answers
1k views

How to set Chrome's user script version number

Edit: The bug that caused this problem has been fixed. The @version tag now works in the stable release. See Issue 30760 Hey. I've been wondering how I might set the version number displayed for ...
11
votes
1answer
973 views

Is it possible to keep single-line comments? (Writing greasemonkey/userscripts in CoffeeScript)

I've noticed that when compiling CoffeeScript, none of the single-line comments are retained. This is problematic as I'm trying to write a greasemonkey/userscript in CoffeeScript, and they rely on ...
11
votes
3answers
5k views

User Script Debugging in Google Chrome

What's the best way to debug custom User Scripts (aka Greasemonkey) in Chrome? Is there a way to enable User Script tracking in the Developer Tools?
11
votes
1answer
581 views

Problem with type coercion and string concatenation in JavaScript in Greasemonkey script on Firefox

I'm creating a GreaseMonkey script to improve the user interface of the 10k tools Stack Overflow uses. I have encountered an unreproducible and frankly bizarre problem that has confounded me and the ...
11
votes
3answers
6k views

Debugging greasemonkey-like scripts

I'm writing javascript code that is read in as a string and executed via eval() by a firefox extension. Firebug does "see" my script so I am not able to use breakpoints, see objects, etc. I am ...
10
votes
10answers
20k views

How can you determine the file size in JavaScript?

I help moderate a forum online, and on this forum we restrict the size of signatures. At the moment we test this via a simple Greasemonkey script I wrote; we wrap all signatures with a <div>, ...
10
votes
2answers
4k views

Recommendations for a “Getting started with Greasemonkey” tutorial [closed]

I'm interested in writing some Chrome compatible Greasemonkey scripts, but I'm finding that there are few updated tutorials on how to really get started properly with writing userscripts. Dive Into ...
9
votes
10answers
3k views

Hidden features of Greasemonkey [closed]

What are some of the lesser-known but useful features and techniques that people are using in their Greasemonkey scripts? (Please, just one feature per answer.) Similar threads: Hidden Features of ...
9
votes
4answers
1k views

Removing an anonymous event listener

Is there anyway to remove an event listener added like this: element.addEventListener(event, function(){/* do work here */}, false); without replacing the element?
8
votes
8answers
8k views

Greasemonkey @require jQuery not working “Component not available”

I've seen the other question on here about loading jQuery in a Greasemonkey. Having tried that method, with this require statement inside my ==UserScript== tags: // @require ...
8
votes
1answer
2k views

How do I get the jQuery-UI version?

This should be an easy question, but how do I detect the jQuery-UI version? This is for a Greasemonkey script and the (current) target page appears to be running jQuery-UI, 1.5.2. But, different ...
8
votes
3answers
889 views

Accessing Greasemonkey metadata from within your script?

Is there any way that my script can retrieve metadata values that are declared in its own header? I don't see anything promising in the API, except perhaps GM_getValue(). That would of course involve ...
8
votes
4answers
4k views

can i remove the X-Requested-With header from ajax requests?

I wanted to know if anyone has had experience with trying to remove the 'X-Requested-With' header from the ajax request made by jquery (or plain JS). is it possible? 2nd part: do you know if Grease ...
8
votes
1answer
2k views

replace some remote javascript file with a local debugging copy using greasemonkey or userscript

While debugging a client app that uses a google backend, I have added some debugging versions of the functions and inserted them using the chrome developer tools script editor. However there are a ...
8
votes
1answer
494 views

IE equivalent for GM_setValue and GM_getValue (Greasemonkey storage)

I have made a script that runs with no glitch on Firefox. I'm retrieving some data from external domain in an iframe to insert them in the page by using setInterval() I have tried to use Trixie, so ...
7
votes
4answers
11k views

How do I include a remote javascript file in a Greasemonkey script?

I'm trying to write a Greasemonkey script, and would like to use the jQuery library to do so, but I'm not quite sure how I would include jQuery from a web address to get rolling. How would I include ...
7
votes
4answers
2k views

Update a greasemonkey script in chrome without reinstalling?

I just want to be able to save, refresh the page, and have my changes show up like I do in Firefox. Having to drag it over and install it every time gets annoying. Any ideas?
7
votes
2answers
2k views

How can I detect visited and unvisited links on a page?

My aim is to detect the unvisited links on a webpage and then create a greasemonkey script to click on those links. By unvisited links here I mean the links which are not opened by me. Since I can see ...
7
votes
5answers
2k views

Best way to store data for Greasemonkey based crawler?

I want to crawl a site with Greasemonkey and wonder if there is a better way to temporarily store values than with GM_setValue. What I want to do is crawl my contacts in a social network and extract ...
6
votes
5answers
13k views

IE9 HTTPS security is compromised by my Greasemonkey script?

I’ve got a Greasemonkey-for-IE script in IE9 that’s importing jQuery. But on secure pages it doesn’t work. I’m getting: SEC7111: HTTPS security is compromised by ...
6
votes
2answers
558 views

Can a website know if I am running a userscript?

Can, for example, Facebook.com run a version control script on my browser and find out if I am running altered HTML code with the use of a script? Could that be done with a script that can read the ...
6
votes
3answers
4k views

jQuery.getJSON inside a greasemonkey user script

I am attempting to write a user script that makes a cross domain AJAX request. I have included jQuery inside my script using @require and everything seems to be working fine up until the point where ...
6
votes
3answers
3k views

Using arrows-keys to navigate

I am wondering if there was a possibility to navigate with arrow keys through a table I created with JS(using jQuery)? I mean jumping from cell to cell...The script is for Greasemonkey. The alert, ...
6
votes
5answers
4k views

Using javascript for pinging a webapp to keep session open

I'm writing a greasemonkey script to keep session open on a webapp I use for work. Which javascript command would you use to create some feedback with the server and ensure the session doesn't fall ...
6
votes
2answers
7k views

How do I close a firefox tab from a greasemonkey script?

I have a greasemonkey user script with this single line of code... window.close(); but firefox does not allow a user script to close a window (as reported by an error message in the error console) ...
6
votes
1answer
3k views

GreaseMonkey onclick binding

When I write a GreaseMonkey script, if I create a div and set onclick to alert it works: var btn = document.createElement('div'); btn.setAttribute('onclick',"alert('clicked!');"); However, if I ...
6
votes
2answers
6k views

Image Manipulation with Javascript?

I'm trying to write a greasemonkey script, and it would be preferable for it to be able to work with images (specifically, find the darkest pixel in an image). Is there a way to do this or must I ...
6
votes
1answer
855 views

Is there a way to automatically convert a Greasemonkey script into a bookmarklet?

For those who don't know what a bookmarklet is: http://en.wikipedia.org/wiki/Bookmarklet
6
votes
1answer
2k views

Greasemonkey, overriding website functions

i've been reading a lot and have been trying to get this done for about 5 hours now... so here it is I want to write a script that will override a function dummy() {$.ajax(...)}; on a website. here ...
6
votes
4answers
17k views

GreaseMonkey script to auto login using HTTP authentication

I've got quite a few GreaseMonkey scripts that I wrote at my work which automatically log me into the internal sites we have here. I've managed to write a script for nearly each one of these sites ...
6
votes
2answers
2k views

Running custom Javascript on every page in Mozilla Firefox

I have a custom piece of Javascript which I would like to run on every web page from specific domains, or perhaps simply on every web page. (If you are wondering: it is not malicious. It allows to ...
6
votes
1answer
814 views

How can I run a user script before any inline scripts run on a webpage?

I want to make a greasemonkey type script for firefox that runs before the scripts on the page. Greasemonkey scripts run after scripts on the page, so that won't work. The reason I need this is ...
6
votes
3answers
1k views

Override default jQuery selector context

I'm trying to use jQuery inside a Firefox extension, and actually want to use jQuery to manipulate the DOM of the current page, as opposed to the context of the XUL file. Thus, I load jQuery in my XUL ...
5
votes
2answers
5k views

How to embed additional jQuery plugins into Greasemonkey

So I've been able to get Greasemonkey and jQuery 1.2.6 to work together without issue, but, now I'm wondering how to embed additional jQuery plugins into my Greasemonkey script, such as Eric Martin's ...
5
votes
5answers
3k views

JavaScript Code to Capitalize Text Inputs

I'm using the popular Firefox extension Greasemonkey. I'd like to know if there was a way to capitalize all text inputs in a certain form, so if I would use jQuery the code would look something like: ...
5
votes
1answer
3k views

Greasemonkey, Chrome and unsafeWindow.foo()

I have the following anchor tag, which contains dynamically-generated arguments arg1,...,arg5 to the JavaScript function foo(), which runs on the web site-side. There are several of these anchor tags ...

1 2 3 4 5 28