下次一定
当前为
// ==UserScript==
// @name BigGo 下次一定啦
// @version 1.2
// @description 下次一定
// @author BaconEgg
// @match https://biggo.com.tw/r/transfer_extension_3.php*
// @grant none
// @namespace https://greasyfork.org/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);
});
})();