Greasy Fork is available in English.

CurseForge Instant Download

Instant downloading of Minecraft CurseForge mods.

  1. // ==UserScript==
  2. // @name CurseForge Instant Download
  3. // @version 1.0.2
  4. // @description Instant downloading of Minecraft CurseForge mods.
  5. // @author TrevTV
  6. // @match https://www.curseforge.com/minecraft/mc-mods/*/*
  7. // @require http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js
  8. // @grant none
  9. // @namespace https://allvvg.xyz
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. var queryURL = document.querySelector('.text-sm a').href // Rewritten by origamitaco (Tyler Harrison)
  16. window.location.replace(queryURL);
  17. var countdown = document.getElementsByClassName("text-xl")[0];
  18. countdown.remove();
  19. }
  20. )();