Greasy Fork

Greasy Fork is available in English.

Auto Goku.to Sign

Automatically clicks the Sign In button for goku.to after 10 seconds... Works best with a auto 'I am not a Robot Clicker(https://chrome.google.com/webstore/detail/im-not-robot-captcha-clic/ceipnlhmjohemhfpbjdgeigkababhmjc)'(p.s stay on the tab for the script to work'

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

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name       Auto Goku.to Sign
// @namespace  http://tampermonkey.net/
// @version    2.4.3
// @ 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(https://chrome.google.com/webstore/detail/im-not-robot-captcha-clic/ceipnlhmjohemhfpbjdgeigkababhmjc)'(p.s stay on the tab for the script to work'
// @match      https://goku.to/login*
// @match       https://goku.to*
// @grant      none
// @license    GPL-3.0
// @icon        blob:chrome-extension://dhdgffkkebhmkfjojejmpbldmpobfkfo/2c3e8992-5b67-4ca4-b03f-1348ce03f159
// ==/UserScript==




//Clicks the Sign-in Button at the Goku Homepage

(function() {
    'use strict';

    window.addEventListener('load', function() {
        const button = document.querySelector('.account-button .btn.btn-blank');
        if (button) {
            button.click();
        }
    });
})();








//Clicks the Sign-in Button at the Goku Sign-in Button in the Sign Page thngy


(function() {
    'use strict';

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