Auto Goku.to sign in Button Clicker

Automatically clicks the Sign In button for goku.to after 10 seconds... Works best with a auto 'I am not a Robot Clicker'(p.s stay on the tab for the script to work'

当前为 2023-01-30 提交的版本,查看 最新版本

// ==UserScript==
// @name       Auto Goku.to sign in Button Clicker
// @namespace  http://tampermonkey.net/
// @version    0.002
// @ author    longkidkoolstar
// @description  Automatically clicks the Sign In button for goku.to after 10 seconds... Works best with a auto 'I am not a Robot Clicker'(p.s stay on the tab for the script to work'
// @match      https://goku.to/login*
// @grant      none
// @license    vgbvchr
// @icon        https://img.goku.to/xxrz/400x400/100/9c/e7/9ce7510639c4204bfe43904fad8f361f/9ce7510639c4204bfe43904fad8f361f.png
// ==/UserScript==

(function() {
    'use strict';

    setTimeout(function() {
        const button = document.querySelector('.btn.btn-block.btn-primary.position-relative');
        if (button) {
            button.click();
        }
    }, 6000);
})();

QingJ © 2025

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