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

0
votes
1answer
23 views

Javascript breaking inside Greasemonkey

I've made code to query a document for matching strings and make a URL from the strings obtained. It looks through the tag elements looking for matches, makes the URL string, then it appends the link ...
1
vote
1answer
26 views

ReferenceError: GM_xmlhttpRequest is not defined

I get a ReferenceError in the following userscript code: // ==UserScript== // @name ... // @namespace ... // @description ... // @include ... // @grant GM_xmlhttpRequest ...
-1
votes
1answer
26 views

Simple script with onclick event works fine in Chrome but fails in Firefox

I try to create an userscript using jQuery and JavaScript, but I am having a strange problem. I would like to add a onclick event to an image. It runs fine when I use Chrome (with TamperMonkey), but ...
0
votes
0answers
9 views

which event to capture to start my greasemonkey script?

I want to add functionality to mega.co.nz. When the site loads it's either waits your login or starts off with login from coockies on your disk. The changes in want to perform are available only on ...
1
vote
2answers
26 views

(Javascript / GM) Allow user to import file

From what I can gather this does not even seem possible but here goes: I am finishing up a Greasemonkey script. In this script the end user is able to save certain things to an html5 localStorage ...
1
vote
1answer
64 views

Userscript no longer runs on iframes, in Chrome 27

I have a chrome extension which consists of a Greasemonkey userscript that has been packaged up so that Chrome users don't have to bother with Tampermonkey. The page on which the script runs consists ...
1
vote
1answer
18 views

Adding @grant to a GM script breaks the overload of XMLHttpRequest.prototype.open?

I'm writing a Greasemonkey script where I want to overload the XMLHttpRequest.prototype.open function to hijack the Ajax calls on the page. I'm using the following code: // ==UserScript== // @name ...
1
vote
1answer
54 views

Use Greasemonkey to replace links, to images, with images?

I'm new to Greasemonkey and I would like to replace the links to images, with just an <img> tag instead. For example, this forums page has a bunch of links like: <a target="_blank" ...
-1
votes
0answers
25 views

My userscript doesn't click buttons anymore

So I have this userscript (Chrome + Tampermonkey) that transfers data from an invoice to a shipping service online. Yesterday the script somehow decided to stop clicking the submit button, so the ...
0
votes
0answers
26 views

Tampermonkey - add page using non-existing URL

I'm creating a userscript which adds new functions to a website. The website has many users, but doesn't have a feature to search for users.I want to create such a function. To do that, I have created ...
0
votes
1answer
34 views

Getting GM_xmlhttpRequest is not defined in Greasemonkey script (Firefox 21.0)

This is my code: // ==UserScript== // @name Test1 // @namespace http://my_unique_namespace.com // @version 1 // @include http* // @grant GM_getValue // @grant GM_setValue // ...
0
votes
1answer
45 views

Elements with display set to none are shown

I have created the following Greasemonkey script for Firefox to help filter class names in the long list of Java API reference : // ==UserScript== // @name JDK API Doc helper problematic // ...
-1
votes
0answers
19 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, ...
1
vote
1answer
37 views

Finding the specific Tag a

My HTML is: <a id="showSlotsByLocation_" href="#" style="color:blue;" onclick="confirmAppt('28/05/2013','364301');">14.00 - 14.15</a> <a id="showSlotsByLocation_" href="#" ...
-1
votes
0answers
27 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
vote
2answers
30 views

waitForKeyElements doesn't recognize selector, with “$”? On reload of same id?

So I am trying to use the waitForKeyElements() function in order to detect AJAX content. The div I am trying to select has a "$" in its ID (e.g. <div id="mydiv$0">) and after much trial and ...
-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 ...
-1
votes
0answers
39 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
vote
1answer
34 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 ...
0
votes
0answers
26 views

Personalized webportal in Firefox [closed]

I have been using iGoogle webportal for sometime now in my firefox as my home page. However with the upcoming closure of iGoogle I want to use this opportunity to create a personalized webportal in ...
1
vote
1answer
28 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 ...
1
vote
1answer
20 views

How can I synchronize JavaScript objects between Greasemonkey scripts on different computers?

Is it possible to synchronize JavaScript objects between Greasemonkey scripts? I have created a website blocks script that stores a list of websites to block, as well as a list of websites to allow, ...
0
votes
1answer
51 views

Why doesn't document.addEventListener('load', function) work in a greasemonkey script?

It doesn't give an error, and I put a console.log('loaded userscript wifi-autologin'), the console.log works, but the intended effect of the document.addEventListener doesn't happen. After doing a bit ...
1
vote
1answer
45 views

Disabling a page's focus-checking function using GM [duplicate]

I'm trying to stop a page from stopping itself when it thinks it's lost focus. So How do I disabling a function within webpage using GM? I'll try by giving the script on the page, hopefully someone ...
1
vote
1answer
49 views

Newly opened window shows my dynamic content, but wrong location

My script opens a new window and then writes its content. The destination window displays "Hello World" as expected, but the URL is the same as the window that the script ran in and I don't understand ...
0
votes
0answers
29 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 ...
-1
votes
0answers
23 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
vote
1answer
33 views

How to add a domain-switching selector to International Google sites?

I am writing a Greasemonkey script to change the top-level domains of google.com. The complete code is below. Testing my code in the dev tool, it did display the choosebox and the button. But, when I ...
-1
votes
1answer
44 views

Obfuscated code throws error in a Greasemonkey Script

I have a Greasemonkey script that I want to be obfuscated. I was wondering what goes wrong with the available "Packer" Javascript obfuscator. It compresses the script fine but after installation, the ...
0
votes
1answer
36 views

Trouble with greasemonkey script to refresh page

I'm downloading data from an online database using the imacros plugin for firefox. It works perfectly, except when the page times out. I've moved to downloading very small chunks of data since then ...
1
vote
1answer
111 views

How to change the Yahoo Mail, sign out URL?

This is my code I came up with (w/ lots of outside help; I'm not fluent in JS): setTimeout(function() { var logout = document.querySelector('a.yucs-signout'), link = ...
1
vote
1answer
51 views

Is there a way to randomly auto-click links on a webpage?

I'm testing a piece of software that restricts websites by activating a proxy. There seems to be a bug where the proxy just stops working, but only after about an hour or two of surfing the web, or by ...
1
vote
1answer
26 views

Can't get random number to work for setTimeout

Can't seem to get my Random # to work at all - code won't execute :( function getRandomInt (5000, 10000) { return Math.floor(Math.random() * (10000 - 5000 + 1)) + 5000; } ...
1
vote
2answers
61 views

Buttons added with Greasemonkey+jQuery appear but don't work on click

Using Greasemonkey (v.1.8) and jQuery(2.0) and Firefox(20.0) I want to add buttons to each musical piece on pages such as Through the Night. I have tried several ways to add the buttons. They appear, ...
0
votes
1answer
43 views

using GM to click button with no name or id

Original PHP Code : var button=''; button+='<table border="0"id="table1"cellspacing="0"cellpadding="2"><tr><td>'; button+='<button type="submit" name="B5"style="height: 20; ...
0
votes
1answer
172 views

Script ok with Greasemonkey but does not work with Tampermonkey. Is it because of jQuery $.get?

I made a script for Greasemonkey on Firefox, it works perfectly, but nothing happens on Chrome with Tampermonkey. I know that Chrome restricts the use of jQuery. I especially found this interesting ...
0
votes
0answers
41 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
1answer
55 views

Can Scriptish inject scripts into other chrome: windows?

As we know Scriptish has the support for the chrome: scheme (although disabled by default), but it failed to inject a user script into other chrome: window (for example, download window, or about ...
0
votes
1answer
44 views

How to click a “Show More” link with Greasemonkey? [closed]

When visiting a BBC episodes page, I would like "SHOW MORE" to be invoked from a Greasemonkey script. I have tried half a dozen ways and none work. I think I am missing some fundamental. Thanks
-2
votes
0answers
24 views

How do you make Greasemonkey Click a text? [closed]

i want to click a text that changes but always has the different text name. Heres an example of what the code might be. <div data-id="1" class="soru bb bl soru-b"> <span>click ...
1
vote
1answer
41 views

How do I use ActiveXObject in Greasemonkey?

I tried: function AddEmotion(strUrl) { try { var cpAdder = new ActiveXObject("QQCPHelper.CPAdder"); if (strUrl != "") { ...
1
vote
1answer
29 views

Make Greasemonkey react to ajax change of an element

There is a page that loads with an empty span like this: <span id="bla"></span> and later fills that span with some text. I need my script to get that text but Greasemonkey runs before ...
1
vote
1answer
38 views

Interval in a Greasemonkey script is not waiting

I am using Greasemonkey to click a button on a page every 100 seconds. So far, I am able to get the JS to click the button but it's not waiting the 100 seconds. I am not getting any error, but the ...
-1
votes
1answer
23 views

Greasemonkey not seeing changes made to DOM on Facebook

I'm using my GM script to link a number of pages. If I create a script that contains just the following code: (I'm using jQuery btw) $(".rfloat.uiButton").trigger('click'); It will like the number ...
-1
votes
0answers
27 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
27 views

Enable Greasemonkey Scripts in a Script [closed]

i made a Greasemonkey/Tampermonkey Script which combines a few other Scripts I made. I already set up a little fixed box at the bottom with activation buttons. When I activate now one of these 4 ...
-1
votes
0answers
63 views

User script code to auto load youtube comments [closed]

I found a script on userscripts.org to auto load YouTube comments.The only problem is it requires you to click on the "auto load comments" button for each page. This script also has three buttons that ...
1
vote
0answers
73 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 ...
0
votes
3answers
60 views

How do I remove the javascript blocking from some links?

For example, I am trying to change this: <a href="javascript: void(null)" class="jv-redirectCandidate" key="pcxe7gwP" >Some Name</a> Into this: <a ...
-2
votes
0answers
24 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 5 29