Tagged Questions
0
votes
2answers
33 views
Does GM_xmlhttpRequest access the website as if I am accessing the website in my browser?
I am curious as to how GM_xmlhttpRequest() reads a page in certain situations.
Does GM_xmlhttpRequest access the website as if I am accessing the website in my browser?
Do sessions remain valid? For ...
1
vote
1answer
130 views
parse JSONP response (from express.js server) clientside using greasemonkey
We are working on a greasemonkeyscript to pull data from an express server cross-domain.
(We found code which is working for a normal html site here:
)
Can you get this to work for greasemonkey?
...
1
vote
1answer
141 views
How can I get my cross-domain Greasemonkey script to work in Chrome, even though it requires jQuery and Greasemonkey API functions?
I'm fighting to get a userscript to work on chrome. I know this question has been asked hundreds of times but I still can't get it to work...
// ==UserScript==
// @name SRH hide closed cases
...
0
votes
0answers
50 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
1answer
78 views
Retrieving the source code of a page in javascript
I'm making a greasemonkey script to extract video URL code from youtube result:
I have this:
// ==UserScript==
// @name extract
// @namespace here
// @include http://stackoverflow.com/
...
1
vote
1answer
116 views
Add a frame to the bottom of a web page using a Greasemonkey script (and set its size)?
Is there any way to add a frame to the bottom of a web page using a Greasemonkey script?
I want to write a script that adds http://www.google.com at the bottom of every web page, inside a frame.
I ...
0
votes
1answer
123 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 ...
1
vote
0answers
165 views
Crossdomain Communication Between Windows/tabs With Tampermonkey [closed]
For example
I have "domain.com" with localscript and push the button
then at "otherdomain.com" (not iframe!) with second localscript (in other window or tab) popup alert
Something exept nodejs ?
...
0
votes
2answers
672 views
How to call GM_xmlhttpRequest within a webpage?
I need to call a cross domain GM_xmlhttpRequest which would be triggered by an event in the webpage.
How do I access the functions within the greasemonkey sandbox, from the webpage?
0
votes
0answers
218 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
1answer
324 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
...
4
votes
2answers
604 views
Userscript in Chrome, Cross-Origin communication
Chrome has its own Greasemonkey, anyway it has many limit. One of them is that its xmlhttprequest doen't support Cross-Origin. So is there any way to make it works?
thanks
0
votes
1answer
334 views
Greasemonkey script with showModalDialog doesn't return the value
This problem is driving me crazy...
I have a script running in Firefox 3.6.24, with Greasemonkey 0.9.13.
One domain (A) needs to access one page from other domain (B)!
On domain A, I have this ...
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/*
// ...
-1
votes
1answer
189 views
Greasmonkey persistent Iframe or overlay across many pages within a single website
I have a script for Greasemonkey and I have managed to add a element to a page that's sort of easy but I would like to add a persistent frame so that each time I move between pages on the website like ...
3
votes
1answer
296 views
How do I authorize users (logged into my website) to use my firefox addon
I made a Firefox addon using the Greasemonkey script compiler at arantius.com/misc/greasemonkey/script-compiler. The addon gets data from my server and displays it on 3rd party websites. Now I want to ...
0
votes
1answer
426 views
greasemonkey: perform GM_xmlhttpRequest() from eval (follow up)
How can you call GM_xmlhttpRequest inside of an eval where you are evaling some complicated code, some of which calls GM_xmlhttpRequest.
This is a follow up to ...