BigGo 下次一定啦

下次一定

目前為 2024-09-24 提交的版本,檢視 最新版本

// ==UserScript==
// @name         BigGo 下次一定啦
// @version      1.3
// @description  下次一定
// @author       BaconEgg
// @match        https://biggo.com.tw/r/transfer_extension*
// @grant        none
// @namespace https://gf.qytechs.cn/users/735944
// ==/UserScript==

(function() {
    'use strict';

    // Function to simulate button click
    function clickButton() {
        const button = document.querySelector("a.btn_exit");
        if (button) {
            button.click();
        }
    }

    // Wait for the page to be fully loaded
    window.addEventListener('load', () => {
        // Initial button click
        clickButton();

        // Set timeout to click the button again after 2 seconds
        setTimeout(clickButton, 2000);
    });
})();

QingJ © 2025

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