Tagged Questions
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
1answer
32 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 ...
0
votes
1answer
43 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
0
votes
1answer
50 views
Links from ajax request are not requested via ajax
I have a userscript that fires an ajax call via GM_xmlhttprequest to load a simple page with some text and links into a div named "debug". this works very well. now I want, that every link in the ...
1
vote
1answer
58 views
Greasemonkey script only loads with CTRL + F5?
I created this Greasemonkey for batch following/unfollowing Twitter users. The script works just fine. However, it won't always (almost never) load the first time I go to one of the pages on the ...
0
votes
0answers
127 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() {
...
1
vote
2answers
68 views
How to know on client side whether a postback occured?
I am developing a Greasemonkey script and this script changes some elements in a table. However, when we click a button in the table an asynchronous postback happens and the table is refreshed.
So, ...
1
vote
1answer
110 views
Greasemonkey AJAX return's abort() is not a function?
Basically, I try to send a request via the GM_xmlhttpRequest() Greasemonkey API and abort it.
Here is a demo script:
// ==UserScript==
// @name example
// @namespace ...
2
votes
1answer
174 views
GM_xmlhttpRequest does not work when called from inside $(document).ready()?
This is my GM_xmlhttpRequest script:
// ==UserScript==
// @name test
// @namespace test
// @include http://stackoverflow.com/*
// @version 1
// ==/UserScript==
GM_xmlhttpRequest({
...
1
vote
1answer
131 views
Run a Greasemonkey script on changes to an internal tab (not a browser tab)?
I'm trying to build a script that alters the coloring/layout of tags on the tag page in the user-profile section of Stack Overflow.
I tested the script and it runs. The problem is that I would like ...
1
vote
2answers
133 views
How to post javascript data to PHP?
If I have a variable that needs to be posted to a PHP script without refreshing the page.
Is this possible? And if so, how?
My attempt using jQuery:
$.ajax({
url: "myphpfile.php",
type: ...
0
votes
1answer
113 views
Greasemonkey/Chrome Extension cross domain login or session
I wrote a set of APIs which will consider you authenticated if you logged on the website (and therefore you have your cookies set).
I then wrote a Greasemonkey and a Google Chrome plugin that does ...
3
votes
2answers
192 views
Why is my GreaseMonkey function unexpectedly being called multiple times?
I am missing something, I'm not sure why the function 'addIcon()' is being called multiple times.
Given:
<div class="ticketpostcontainer">Some text</div>
<div ...
0
votes
4answers
84 views
How do I get my script to submit two forms in series?
I have two pages with one form at each. When you submit the first form, you will move to the 2nd page with the second form.
How do I submit both forms in one Greasemonkey script.
Step by step:
...
1
vote
1answer
148 views
How to make the page really reload
I've got a Greasemonkey script (written by another coder - Brock Adams) that loads sequentially the pages contained in the array at the beginning of the code.
How to open a list of pages automatically ...
4
votes
1answer
339 views
How to get an AJAX get-request to wait for the page to be rendered before returning a response?
I am in the process of writing a Greasemonkey Script for pages in this site (Site1). Site1 has deals and offers of various kinds and my GM script aims to do the following:
When one visits an offer on ...
0
votes
1answer
237 views
Ajax call from Greasemonkey to a Servlet: response failure
Though I've programming experience, am completely new to GS, JS, or anything related to UI.
Scenario: Making an AJAX call from Greasemonkey script to a Servlet
Greasemonkey/JS Code:
function ...
3
votes
2answers
647 views
Greasemonkey: run script on same page multiple times
I'm totally new to Greasemonkey, javascript, in fact all the UI stuff.
Requirement: Userscript is run by GS once after the page loads. However, I need the same script to be run multiple times ...
-1
votes
1answer
320 views
GreaseMonkey and JQuery AJAX response doesn't survive callback in any form
Before everyone finds it, this has more or less been asked before: Load remote URL with Greasemonkey and jQuery
However, it was 3 years ago. I tried the various methods presented in the answers and ...
0
votes
1answer
268 views
Add textbox gmail - Browser Extension
Is there a JS framework or library to add text/check box to gmail UI?
Please note that the data contained there will be sent through AJAX - JSON object to a particular server.
Idea is to make a ...
1
vote
1answer
115 views
How to download/read only the first 80KB of a file?
I am making a Greasemonkey script for a website that has many flash files. I'd like to make a hash of the flash, the problem is that the flash files are up to 10 megabytes.
This is slow; I'd like to ...
0
votes
3answers
363 views
How can I run a Greasemonkey script when page changed via ajax?
I have that script:
// ==UserScript==
// @name example
// @include http://xxx*
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js
// ==/UserScript==
var findElem = ...
1
vote
2answers
149 views
How can binary files be requested from GreaseMonkey userscripts?
Backstory
I wrote a specialized image inliner script that is intended to be used with both GreaseMonkey and Google Chrome. It is supposed to download PNG files and store them in data: urls in image ...
0
votes
1answer
295 views
Script to fire an event as soon as an element exists?
I'm trying to write a little Greasemonkey script for achieving some tasks in Facebook, like hiding news and such.
The problem is: I'm having an ID to an element which isn't existing yet in the DOM. ...
0
votes
1answer
754 views
How can I run a Greasemonkey function after an AJAX update?
I have a GM script that adds buttons next to certain hyperlinks on Facebook pages. However, any AJAX update nukes the buttons in that section of page (i.e. when you click 'view more comments' - all ...
2
votes
1answer
102 views
IN a greasemonkey userscript append text to a form when submitted with ajax
So, in this question I explained my whole situation and to save space I am not going to repost my whole situation
But here is the answer to the question that I am having problems with
function ...
0
votes
1answer
160 views
How can my GreaseMonkey script get the data which will be load by ajax later?
I'm writing a GreaseMonkey script. And I found some elements was loaded by ajax.
When my user script running, the data is not loaded.
I try to use 'while' to wait for the ajax load the data, and it ...
3
votes
1answer
554 views
Greasemonkey AJAX request is not sending data?
I am firing a GET request with Greasemonkey's GM_xmlhttpRequest():
$(".getReview").click(function(){
var videoId = $(this).parents("li").find("a").attr("href");
alert(videoId);
...
0
votes
1answer
311 views
Making requests from userscript to the localhost
So, I'm trying to make cross-site AJAX request from my own script to the localhost. In the userscript (running on Firefox's Scriptish engine) I'm loading my script like this
...
1
vote
1answer
303 views
GM_xmlhttpRequest responseText empty in Firefox but perfect in Chrome
I'm trying to do a userscript for Chrome and Greasemonkey in Firefox.
I'm using the GM_xmlhttpRequest since it supposed to work in both platforms.
The request code seems to work in both browsers, but ...
2
votes
1answer
267 views
Greasemonkey script to append text, to a form, when submitted with AJAX?
So I am making a Greasemonkey script for a mybb forum. What it does is that when you submit a post it adds code to the beginning and the end of the post. Well even though that is a bad explanation ...
0
votes
2answers
337 views
trouble with jQuery ajax post not submitting data to asp page
I have a Greasemonkey script that submits a form via an ajax request (post) with all the required name/value pairs. I get a response to the request but it does not contain any response to the data ...
2
votes
2answers
338 views
How do I make Greasemonkey do something when an AJAX call returns?
On YouTube, when I click trending it makes an AJAX call to fetch the trending videos.
Now, I've made a script that will remove any videos that I've already seen.
That script works fine for the ...
4
votes
1answer
2k views
Fire Greasemonkey script on AJAX request
I am working on a user script and I've just found that the script is not run when the main page makes AJAX requests.
Is there any way to fire the user script both on main page load and on AJAX ...
1
vote
1answer
2k views
Greasemonkey, Cross domain, jQuery, get() request failing with 405 “method not allowed”
I am making cross domain jQuery get() and it failing with a "405 not allowed" error.
My Greasemonkey script is something like this:
// ==UserScript==
// @include http://www.foobar.com/*
// ...
0
votes
0answers
43 views
Greasemonkey plugin. (js/ajax, jquery optional). Page/thread Updater [duplicate]
Possible Duplicate:
How to autoupdate a forum thread when new posts?
sigh captcha ate my question.
Greasemonkey plugin. (js/ajax, jquery optional).
Want to autoupdate forum pages when ...
0
votes
1answer
142 views
How to autoupdate a forum thread when new posts?
Greasemonkey plugin. (js/ajax, jquery optional).
Want to autoupdate forum pages when they get changed (new posts, for instance). Ideally with no page refresh.
Additionally, if I can make it load ...
0
votes
1answer
723 views
Follow Ajaxify Link with Javascript
I'm attempting to create a greasemonkey script that will automatically poke (well, repoke) people on facebook. However, it is only the specific people I designate. This is easy to do as I can display ...
0
votes
1answer
50 views
Need help testing data on an array
Im new on GM.
Iv'e run into an problem on an array segment. Here is the code:
var A1_rest= '';
var A1reset_go = false;
var auctiontyp = 0
var myJson = ...
1
vote
1answer
2k views
Using Greasemonkey and jQuery to intercept JSON/AJAX data from a page, and process it
Right, I partly got an answer in my previous question. But, I still sit with the problem of telling GM where to go and fetch the data to put into the array...
On the web page ...
2
votes
1answer
1k views
Set Variable inside Eval (JavaScript)
i'm writing a GreaseMonkey script (using JQuery), and i need some variables that are set by a script in the original page, like this:
<script type="text/javascript">
var rData = ...
1
vote
2answers
314 views
Why doesn't greasemonkey make this GM_xmlhttpRequest?
According to http://wiki.greasespot.net/GM_xmlhttpRequest, somthing like this script should work:
// ==UserScript==
// @name test
// @namespace _test
// @include ...
2
votes
5answers
1k views
How to save an ajax response in firefox
I need to find a way to write ajax responses to a file. The responses are XML strings, which is more than fine by me.
What I would like to do, is click on something in my webpage, and save the XML ...
1
vote
2answers
364 views
How to load a webpage repeatedly using grease-monkey and check for an element?
Basically, I want to repeatedly load a URL say http://xyz.co.in and then check for the value of a particular element, just like a testing process and monitor server logs for that flow.
I'm trying to ...
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 ...
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 ...
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 ...
2
votes
4answers
2k views
How to make synchronous AJAX calls in greasemonkey?
I have a list of URLs and need to load each page, one after another.
This is my main function that i have in my Mind.
mainFunction() {
loop { // Loop through URL list
oPage = func1(URL); //Get ...
4
votes
3answers
4k views
JSONP callback method is not defined
I'm trying to get a jsonp callback working using jquery within a greasemonkey script. Here's my jquery:
$.ajax({
url: "http://mydomain.com/MyWebService?callback=?",
data: { authkey: ...
1
vote
1answer
1k views
AJAX post to simulate Input type=“file” path
I would like to know if its possible to make an AJAX post request to submit a file path to a form. Basically, I want to know if its possible to simulate the path a normal input type="file" would ...

