您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Bypass the 5 second rule!
- // ==UserScript==
- // @name Curseforge install bypass
- // @namespace http://tampermonkey.net/
- // @version 69.420
- // @description Bypass the 5 second rule!
- // @author Binner#6124 on discord(or Binner#0001 if that doesn't work)
- // @match https://www.curseforge.com/*/*/*/download/*
- // @icon https://www.google.com/s2/favicons?sz=64&domain=curseforge.com
- // @grant GM_setValue
- // ==/UserScript==
- (function() {
- 'use strict';
- const currentUrl = location.href;
- if (!currentUrl.endsWith('/file')) {
- GM_setValue('newUrl', currentUrl + '/file');
- location.href = GM_getValue('newUrl');
- }
- })();