Curseforge install bypass

Bypass the 5 second rule!

目前為 2023-02-19 提交的版本,檢視 最新版本

// ==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');
    }
})();

QingJ © 2025

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