// ==UserScript== // @name Auto Goku.to Sign // @namespace http://tampermonkey.net/ // @version 2.5 // @ 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 https://cdn.dribbble.com/users/289074/screenshots/1614713/sans_titre_-_2.png // @downloadURL none // ==/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); })();