Shutup Curseforge APP

这个脚本去除了 Curseforge Beta 上无处不在的 APP 推广

  1. // ==UserScript==
  2. // @name Shutup Curseforge APP
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description 这个脚本去除了 Curseforge Beta 上无处不在的 APP 推广
  6. // @author Colinxu2020
  7. // @match https://beta.curseforge.com/minecraft/mc-mods/*/*/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=curseforge.com
  9. // @grant none
  10. // @license GNU LESSER GENERAL PUBLIC LICENSE VERSION 3
  11. // ==/UserScript==
  12.  
  13.  
  14. var lazyhack_files=function(){
  15. document.getElementsByClassName(' split-button')[1].innerHTML=document.getElementsByClassName("more-options")[1].children[1].innerHTML;
  16. };
  17. (function() {
  18. 'use strict';
  19.  
  20. if(window.location.href.indexOf("download")!=-1){
  21. console.log("curseforge download")
  22. document.getElementsByClassName("client-marketing")[0].innerHTML="";
  23. }
  24. if(window.location.href.indexOf("files")!=-1){
  25. console.log("curseforge files");
  26. setTimeout(lazyhack_files,5);
  27. }
  28. document.getElementsByClassName("user-actions")[0].innerHTML="";
  29. document.getElementsByClassName(' split-button')[0].innerHTML=document.getElementsByClassName("more-options")[0].children[1].innerHTML;
  30. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址