Tagged Questions
1
vote
2answers
23 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
votes
0answers
24 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
20 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 ...
1
vote
1answer
34 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
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 ...
1
vote
1answer
158 views
Script ok with GreaseMonkey but does not work with TamperMonkey for Chrome: is because of $.get jQuery?
Ok. I made a 10 lines script for GreaseMonkey on Firefox, it works perfectly, but nothing happen on Chrome with TamperMonkey.
I know that Chrome restricts the use of jQuery.
I especially found this ...
-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 ...
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 ...
1
vote
1answer
71 views
Rewriting the global alert() function doesn't work in Tampermonkey
In Greasemonkey I can rewrite the global alert() function with:
window.alert = function() {...}
and it works anywhere.
But, in Tampermonkey (Chrome), it only works on it's own script.
Why?
And ...
0
votes
1answer
218 views
How/Where to store data in a Chrome Tampermonkey script?
I wrote one Greasemonkey/Tampermonkey script for Facebook . I needed to store data to retrieve it later. For that I used localStorage.
That was working fine. But I noticed that after few hours all ...
2
votes
1answer
123 views
How to paste text in Pastebin using JavaScript
I'm using Tampermonkey (the same as Greasemonkey, but for Chrome) to make a script. The idea is to paste the text I write into Pastebin. The text was written in other website. I saw I can do it using ...
0
votes
0answers
131 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() {
...
3
votes
1answer
174 views
Tamper monkey not clicking
HTML:
<div id="someid">Attack ..</div>
jQuery:
$("#someid").click(function() {
alert("I was clicked.");
});
jsFiddle: http://jsfiddle.net/kgJKU/
Greasemonkey:
// ==UserScript==
...
1
vote
1answer
200 views
How can my script change a Specific Font (for a specific class)?
I'm trying to make my own Tampermonkey script to change a specific font style on a specific site from a cursive style to a sans-serif style.
The HTML from the site is:
<div class="text">Ask ...
1
vote
1answer
1k views
Choosing and activating the right controls on an AJAX-driven site
So, I am trying to make it where every time I visit any nike.com sneaker page (without the HTML link), it automatically picks my shoe size, adds it to the cart, and checks out for me.
I am currently ...
1
vote
2answers
84 views
How to keep my userscript working, even when the site goes offline?
I want to make an userscript (right now I am only worried about Chrome compatibility) reload the page every 30 seconds (I mean, that's not the point, I just want to somehow execute some script while ...
0
votes
3answers
360 views
Google Chrome, Same-Origin Policy killing Tampermonkey script
I have a script done by myself that uses jQuery Ajax functions to log some data from a web page when I access it. It takes some info and sends it to my local Apache host to save in a text file.
It ...
-1
votes
1answer
70 views
Stop greasmonkey script from continuously running after page refreshes?
I have written a script that enter some information into a form and submits the form. The problem is, upon submission of the form, the page refreshes. When the page reloads, it prompts the script to ...
0
votes
1answer
489 views
Accessing “head” variables from a Tampermonkey script
I'm writing a form-filling userscript (for Tampermonkey in Chrome) which should take variables from JavaScript already in the page and put those variables in the form. Here's my code so far:
...
2
votes
2answers
158 views
Script to intercept google search
Many times I search for a keyword that I really just want a direct launch to the site.
e.g., I'll type "Stack Overflow" in the google search bar and then click the first link. Instead, I would like ...
1
vote
0answers
122 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 ...
0
votes
3answers
123 views
How to detect mouse click when using Userscripts?
I tried to add some functions to some websites I use everyday. I want to add a function that will remove some element when I click on certain links. So I use Tampermonkey and tried to test the ...
1
vote
2answers
184 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 ...
2
votes
1answer
3k views
Jquery with Tampermonkey
So my console is giving me this message -
The page at https://en.wikibooks.org/wiki/Vehicle_Identification_Numbers_(VIN_codes)/GM/VIN_Codes ran insecure content from ...
0
votes
1answer
872 views
How do I access an iframe's javascript from a userscript?
I'm trying to use a Chrome userscript or a Tampermonkey script to modify a page with this structure:
<body>
content up here
<iframe id="main" src="foo.dat"></iframe>
</body>
...
1
vote
1answer
359 views
Chrome: doesn't print javascript content
( This is through Grease/Tampermonkey ).
Here's a print function for a kiosk using the Chrome beta browser:
$("#autoCheckOrder button").click ( function () {
var newWin = window.open ("");
...
1
vote
1answer
753 views
Chrome Print-Preview fails with jQuery print button
I have a kiosk with the following Greasemonkey (Tampermonkey) code on the page to enable receipt printing:
$("input").css("font-size", "xx-large");
$("#newcheckout").append ('<div ...
2
votes
1answer
455 views
jQuery click() not working in a Greasemonkey/Tampermonkey script
I am having issues triggering a jQuery click through Greasemonkey/Tampermonkey...
jQuery('button').each(function() {
jQuery(this).css('background', 'red');
jQuery(this).click();
...
2
votes
3answers
536 views
How to check for 403 and 404 errors when changing the url of a resource?
I am making a userscript for the TamperMonkey Chrome extension (it is the same than making a userscript for GreaseMonkey).
In my script, I am iterating over some document external resources (img, ...
2
votes
2answers
751 views
Place div over Flash object with userscript
I have a script which adds a div to a page containing a full-screen Flash object, like this:
var myDiv= document.createElement("div");
myDiv.style.background = "red";
myDiv.style.width = "30px";
...
0
votes
2answers
671 views
jQuery click event not firing in Greasemonkey script
I've appended an image to a page via GM and I'm trying to execute a click event to no avail.
Any ideas what I'm missing?
Page markup contains:
<img id="kwdHelp" src="myImage />
...
3
votes
3answers
3k views
What's a simple way in Google Chrome to insert Javascript into sites?
I would like to be able to add custom snippets of javascript to any site that matches a regex. This is mostly because of sites that I use daily because of specialized content, but which have poor ...
2
votes
1answer
400 views
Port Greasemonkey script to Chrome
I have found a Greasemonkey script which works fine in Firefox but not in Chrome, which is my preferred browser.
http://userscripts.org/scripts/show/105578
I have tried to fix it myself but without ...
1
vote
3answers
443 views
userscript chrome vs. firefox
i have written a big userscript for greasemonkey which works just fine in firefox, but in chrome nothing happens :(
// ==UserScript==
// @name Name
// @description Desc.
// @author ...
