-
Script:
``` JS
// ==UserScript==
// @name Greasemonkey bug
// @version 1
// @author Y0ba
// @grant GM_xmlhttpRequest
// @include https://github.com/greasemonkey/greasemonkey/*
// ==/UserScript==
var…
-
> // ==UserScript==
> // @name NANA-Tool
> // @namespace m-zhan.ml
> // @version 1.1 graduation final
> // @description nana-tool
> // @match http://nanabt.com/*
> // @domain …
-
There's currently no reliable way for user scripts to trigger downloads.
AFAIK we have
- `location.href = myUrl` - Problem: Success depends on response headers. Media types supported by Firefox (like…
ghost updated
7 years ago
-
The following script, when run on http://www.ebay.co.uk , alerts "Success" in Firefox 19 but "Fail" in Firefox 20.
The Error Console shows "Greasemonkey access violation: unsafeWindow cannot call GM_…
-
I am hoping someone can help me. I have written a Greasemonkey script that is used by thousands of people around the world. I have been developing it for 8+ years now and it works really well MOST o…
-
In XMLHttpRequest, there are multiple readyStates of interest: 2 (response headers received)and 4 (load finished).
I created a script that checks responseHeaders at readyState 2, and if it indicate…
-
https://github.com/greasemonkey/greasemonkey/issues/2199
https://wiki.greasespot.net/GM_info
-
It would help script authors if there was an api to download a new copy of a resource even if url is the same. The only workaround I'm aware of is to add fake changes to url in metadata but that requi…
sl5ne updated
7 years ago
-
Web page can learn file name of a GM script.
Create an html file that includes the following script:
```
window.onerror = function(msg, url, line){
alert(msg + " @ " + url + ":" + line);
}
``…
-
Just an idea of an enhancement of some kind, would work well in conjunction with the minimized API call to futbin.
I've been working a little bit on this but not had real time to put forward yet.
…