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

3
votes
1answer
310 views

how to use jquery and greasemonkey to select an option at google analytics?

Not a total noob when it comes to JS, but started yesterday with JQuery... :) I want to make GA show 50 lines at a time by default - using GM + JQuery! (not in the internal settings). Plus, i dont ...
2
votes
1answer
634 views

Greasemonkey Uncaught ReferenceError: initScript is not defined in Chrome only

The code below, Greasemonkey script, works in Firefox and Opera. Also when packaged for Safari it works fine. When run in Chrome however I get Uncaught ReferenceError: initScript is not defined. ...
1
vote
1answer
24 views

Var in greasemonkey fails passing to the attribute

Hi there I'm not really an expert in Javascript and noobie in gresemonkey and I'll need your help. So here is the code: // ==UserScript== // @name Button RT // @include *rt* // @version ...
2
votes
0answers
89 views

I believe this game uses websocket but my Override of WebSocket does not work?

Many popular web games are created in Flash. I'm fairly certain they also take advantage of websockets to do tasks like chat and constant updates. The game in question, though really I'd like to be ...
2
votes
0answers
70 views

Use Javascript/greasemonkey to 'stack' websites

I want to type www.aaa.com into url and then have a greasemonkey script that will load www.aaa.com but also load www.bbb.com right below www.aaa.com. You should be able to define the url for ...
2
votes
0answers
112 views

Using Greasemonkey to Prevent downloading of a script

With Greasemonkey, I'm looking to block images and scripts from being downloaded. From an existing post I learnt that it is possible to use the document-start directive to jump in before scripts ...
2
votes
0answers
477 views

postMessage doesn't work in GreaseMonkey

Because it cannot access the contentWindow property on cross-domain iframe but in pure Firefox it will work. Here are bunch of codes isolating this problem: create 3 files on local server: ...
1
vote
0answers
65 views

How to run javascript in Firefox mobile on a specific page, on pageload (similar to greasemonkey)

I'd like to run a Javascript snippet at the point where a specific page (e.g. facebook.com) has finished loading to click buttons automatically (e.g. submit form automatically). So I'm looking for a ...
1
vote
0answers
94 views

How to find and replace a websocket?

I'm fairly new to javascript and I've been looking through script nearly all day to see if there is a way to sniff websocket traffic for debugging and research or simple replace websocket with my own. ...
1
vote
0answers
98 views

Adding alert with Greasemonkey on site using Socket.IO

I want to create a Greasemonkey script that will pop up an alert when a specific message is received from the site through it's Socket.IO data transport. The site in question is bittrivia.com and ...
1
vote
0answers
85 views

Sending an, intercepted and modified, submit re-loads the (wrong) page

I use a Greasemonkey script in Firefox to intercept a submit process in order to modify a certain post variable. I save the old submit routine to call it later and overwrite ...
1
vote
0answers
120 views

Reset or override counter after page load

I have the following span element on start up: <span class="counter" text="Time will expire in %num% seconds" start="10"></span> The start attribute is captured in jQuery and goes ...
1
vote
0answers
247 views

GreaseMonkey: Synchronous GM_xmlhttpRequest acting asynchronously

I'm trying to get a GM_xmlhttpRequest call to behave synchronously, but I can't get it to work like I expect: function myFunction(arg) { var a; GM_xmlhttpRequest({ method:"GET", ...
1
vote
0answers
242 views

Any experience in writing greasemonkey script for gmail?

I've had this idea for a year or so and I find it hard to believe that I am the only one to have ever of thought of this. This feature is not available in any web-based or email client that I know ...
0
votes
0answers
13 views

Ajax request causes error (GM_xmlhttpRequest)

The following piece of code causes this error: Error: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) GM_xmlhttpRequest({ method:'POST', url:url, data:data, ...
0
votes
0answers
25 views

Would it be possible to create a macro recorder using a Greasemonkey script?

Using a Greasemonkey script, would it be possible to create a script that would record and play back keyboard and mouse macros? For example, I'd like to record the action of typing "JavaScript" on ...
0
votes
0answers
36 views

Suppress sending text in Facebook chat?

Is there a way to find out which events facebook use exactly when the text is sent on facebook chat ? I mean, when I type some text and press Enter to send it, I would like to suppress sending that ...
0
votes
0answers
35 views

Find out which keyboard shortcuts are bound on a webpage

I think a good webpage should be accessible without any use of a mouse. Yet such pages often lack the info what keyboard shortcuts are actually bound to what functions. I'm looking for a tool to make ...
0
votes
0answers
54 views

Twitter Favourites - UnLike/UnFavorite script

I have GreaseMonkey installed on my Firefox, and I would like a script that would unFavourite/ unlike all the tweets that I've ever Favourited on twitter. My twitter account it over 3 years old and ...
0
votes
0answers
46 views

greasemonkey inject XML document?

greasemonkey injects using <script src=' .. but i dont think this is gonna work with XML documents, so i found this question about using javascript in an XML document using the mentioned tag, how ...
0
votes
0answers
71 views

Greasemonkey facebook content manipulation

The goal is simple. Facebook doesn't allow animated gifs, what I am trying to achieve is that to upload an image (gifs) from the facebook wall, it will be changed to jpg and appears on the wall. The ...
0
votes
0answers
86 views

Changing td background color when argument(s) are met

Platform: Greasemonkey Goal: To set <td style="background-color:green!important;"> when argument(s) are met Usage: Private WWW: http://kuutiomaa.fi/online The page is in ...
0
votes
0answers
77 views

Are Facebook's “-cx-PRIVATE-” prefix for its CSS class names, protected against Greasemonkey type userscripts?

Facebook have started using the "-cx-PRIVATE-" as a naming prefix for many of their CSS class names on their site. It seems like it is some sort of protection against Greasemonkey type user scripts. ...
0
votes
0answers
125 views

How to wait for a page to load after clicking a button in Greasemonkey?

When my script below is executed, after it clicks a button, the rest of the code is not executed. checkTypeOfRegistration() function checkTypeOfRegistration() { ...
0
votes
0answers
62 views

VirtualBox/VMWare Greasemonkey issues every Saturday (???)

I used to run a specific Greasemonkey script on a clean Win7 laptop, which has always worked perfectly fine and still does! But I decided to create a clean Win7 VirtualBox installation on my PC (NOT ...
0
votes
0answers
33 views

Disabling Ajax with Greasemonkey

I want to disable the "Seen at ..." and "Typing.." function in facebook with Greasemonkey. It's the first time that I am working with Greasemonkey so I have no idea on how to do that actually. I ...
0
votes
0answers
115 views

How to send data from Greasemonkey to a PHP (WAMP) server?

I am creating a Greasemonkey script where I am calculating six variables (time, move, scroll, sav, prin, book and url). I need to send these variables' data to my PHP page so that these could be ...
0
votes
0answers
44 views

Setting up two coordinated iframes with Greasemonkey

I'm working on a script for helping me read my favorite news site. Basically, it will consist of two iframes side by side, the left one with the headlines and the right one for reading articles opened ...
0
votes
0answers
50 views

Hide previously viewed images using a Greasemonkey script

I'm trying to write a Greasemonkey script that will hide images in Google Image Search that I've already seen (so that I won't be shown the same image in search results twice, when making multiple ...
0
votes
0answers
79 views

Greasemonkey scripts and inline scripts?

I need a Greasemonkey script to customize one of my frequently visited site. How can I make sure my script will excute first, modify the html, end sucessfully, only then allow any inline script runs? ...
0
votes
0answers
115 views

Greasemonkey scripts in a Windows Phone WebBrowser Control

I am trying to add additional functionality to a webBrowser control using some already written Greasemonkey scripts I have. Is there a way that I might integrate these into a webBrowser control on ...
0
votes
0answers
119 views

How do I use JS lazy loading in greasemonkey scripts?

How do I use JS lazy loading in greasemonkey scripts? I have tried to alter the backpage greasemonkey script from userscripts to only load the images once they are scrolled into view. However, all ...
0
votes
0answers
154 views

waitForKeyElements proper syntax for onload and onclick events

I'm trying to apply the waitForKeyElements utility in my greasemonkey script so it can execute my desired code when ajax finishes loading. I have two groups of code. First group is some code I would ...
0
votes
0answers
127 views

GreaseMonkey - Change name of 'Save as…' file as client - JavaScript

I have a GreaseMonkey script which downloads files from a website but the problem is while the files have meaningful titles in the content, the download links are all random-generated. Ex: < a ...
0
votes
0answers
114 views

How to get Google Reader Prefetch More script to work again on new Google Reader

Does anyone know what parts of code need to be changed in the Google Reader Prefetch More Greasemonkey script to make it work again? The script preloads additional entries in Google Reader's expanded ...
0
votes
0answers
94 views

Facebook API call from greasemonkey script not working

I am writing a Greasemonkey script which will populated Facebook friend's data based on details of webpage visited. I am facing issue with access token as it expired several times in the same session. ...
0
votes
0answers
210 views

change display of elements in a cross-domain iframe (greasemonkey, bookmarklet solutions ok!)

I need to create a web page that embeds a live google doc with the docs-chrome div element (containing all the stuff at the top of a docs page) hidden or removed in the iframe. Because of cross-site ...
0
votes
0answers
242 views

Greasemonkey xmlhttpRequest error

I am trying to code a greasemonkey script. But I think there is a problem with my xmlhttpRequest function.I am new at this xmlhttpRequest thing and I can't find the problem. When I load the page ...
0
votes
0answers
210 views

Small Greasemonkey Script that Highlights H2 Elements

The following script will highlight all instances of my string, "Greasemonkey" in yellow: document.body.innerHTML= document.body.innerHTML.replace(/Greasemonkey/g, function(m){ return '<span ...
0
votes
0answers
195 views

GM_xmlhttpRequest loses data in jQuery .each() statement

I've some pages with URL like this: www.example.com/index.php?id={a number} and each page has the same <select> element: <select id="foo"> <option value="1">Page1 <option ...
0
votes
0answers
185 views

Embed a (Diaspora) textbox wherever Facebook textbox is located

I want to make a script with javascript that replaces the (post) textbox of facebook with the (post) textbox from another social site like diaspora. What I want to happen is (for example facebook with ...
0
votes
0answers
128 views

Change secure http page content in a Firefox extension using Greasemonkey compiler

I'm building a Firefox extension that alters the page content of a few select websites and I'm using the Greasemonkey compiler to do this (http://diveintogreasemonkey.org/advanced/compiler.html). The ...
0
votes
0answers
1k views

How to get user status in VK.com by JavaScript

Hey Guys, I've tried to get User's status on VK.com by JavaScript, but i didn't got it. So, I need to know is User online or not. I need it to use with Greasemonkey and jquery. I've tried to parse ...
0
votes
0answers
214 views

Problems with Too many connections

I am using GM_xmlhttpRequest (greasemonkey xmlhttpRequest) to communicate with my app. Every half second it sends some json to update the status of a page. I am running 3 pages in FireFox. Using ...
-1
votes
0answers
25 views

Greasemonkey & login

Here's the situation that I'm trying to figure out and I wanted your input on this. What I'm after is for Greasemonkey to be able to access third party website that requires logging in to use it's ...
-1
votes
0answers
37 views

Greasemonkey script insert value to form fail in some case

I struggle with a greasemonkeyscript to fill out some html form. I have trouble to get it work for dropdown selects where value is not int (Have cut down both script and html part) part of script: ...
-1
votes
0answers
21 views

Is there a way to extract Mantis Bugtracker issues history?

After browsing the web for a while, without having a lot of results about people concerned by such a need, I hope I will find some help here : I am using Mantis Bugtracker to manage issues and I ...
-1
votes
0answers
25 views

Greasemonkey, running script when content is inserted onto my Facebook feed

I'm creating a greasemonkey script that monitors my Facebook page for new content that's being inserted onto my feed. As you know Facebook loads this content automatically. How can I have my ...
-2
votes
0answers
23 views

Replacing several Images with greasemonkey

My English is not that good, so I will make it simple. I would like to replace several images on a website with images I uploaded on imageshack. I already searched for solutions, but I have do admit ...
-2
votes
0answers
23 views

is it possible auto-questions solve on Greasemonkey?

I want the browser to be able to select correct answers to questions. I found an answer that seems to be the right idea (How can I automatically select specific radio buttons with Greasemonkey?) but I ...

1 2 3 4