Guest User

ElonaUp AutoDownloader

a guest
Jul 20th, 2017
2,991
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name         ElonaUpAutoDownload
  3. // @version      0.1
  4. // @description  Makes life easier.
  5. // @author       Anon
  6. // @match        http://www.elonaup.x0.com/sozai/src/*.bmp
  7. // @grant        window.close
  8. // @grant        GM_download
  9. // ==/UserScript==
  10.  
  11. (function() {
  12.     'use strict';
  13.  
  14.     GM_download({url: document.URL, name:"required-but-not-important", saveAs: true, onload: window.close});
  15. })();
Add Comment
Please, Sign In to add comment