CFDD

CurseForge Direct Download

  1. // ==UserScript==
  2. // @name CFDD
  3. // @namespace LucXas
  4. // @version 1.0
  5. // @description CurseForge Direct Download
  6. // @author LucXas
  7. // @match https://www.curseforge.com/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=curseforge.com
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12. var l = location.href;
  13. var b = document.getElementsByClassName('button');
  14. if (l.match(/https:\/\/www\.curseforge\.com\/.*?\/download/g)) location.href = document.getElementsByClassName('alink underline')[0];
  15. if (l.match(/https:\/\/www\.curseforge\.com\/.*?\/files/g)){
  16. for (var i = 1; i < b.length; i++) if (b[i].href.match(/.*?\/download\/[0-9]+/g)) b[i].href += "/file";
  17. }