您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
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'
当前为
// ==UserScript== // @name Auto Goku.to sign in Button Clicker // @namespace http://tampermonkey.net/ // @version 2.0 // @ 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* // @match https://goku.to* // @grant none // @license GPL-3.0 // @icon https://img.goku.to/xxrz/400x400/100/9c/e7/9ce7510639c4204bfe43904fad8f361f/9ce7510639c4204bfe43904fad8f361f.png // ==/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(); } }, 6000); })();