-
-
Save MTco/22d792efc3d8d7d7e39dfb6faae9d735 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name GM_download emulation | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description emulate GM_download functionality | |
// @require https://github.com/eligrey/FileSaver.js/raw/master/FileSaver.js | |
// @match http://tampermonkey.net/empty.html | |
// @grant GM_xmlhttpRequest | |
// @copyright 2014, Jan Biniok | |
// ==/UserScript== | |
var GM_download_emu = function(url, name) { | |
GM_xmlhttpRequest({ | |
method: 'GET', | |
url: url, | |
onload: function(r) { | |
var bb = new Blob([r.responseText], {type: 'text/plain'}); | |
saveAs(bb, name); | |
} | |
}); | |
}; | |
GM_download_emu('http://tampermonkey.net/favicon.ico', 'favicon.ico' /* .exe .sh .crx*/); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment