Advertisement
XenoTheStrange

9minecraft.net auto start download

Jul 2nd, 2022 (edited)
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. // ==UserScript==
  2. // @name 9minecraft.net auto download
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Go to the download page instead of clicking the link which triggers a script taking you to an ad site.
  6. // @author XenoTheStrange
  7. // @match https://files.9minecraft.net/index.php?act=dl&id=*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=9minecraft.net
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14. document.location.href = document.querySelector("a").href
  15. // Your code here...
  16. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement