// ==UserScript== // @name Fly Shortlink Autoclicker // @namespace Autoclicker for Linksfly and ShortsFly // @description Autoclicker for Linksfly and ShortsFly // @match https://thumb9.net/* // @match https://shinbhu.net/* // @match https://crewus.net/* // @match https://crewbase.net/* // @match https://topcryptoz.net/* // @match https://allcryptoz.net/* // @match https://ultraten.net/* // @match https://uniqueten.net/* // @match https://thumb8.net/* // @match https://shinchu.net/* // @match https://batmanfactor.com/* // @match https://phineypet.com/* // @match https://talkforfitness.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=shortsfly.me // @author BleemV // @grant none // @version 1.32 // ==/UserScript== (function() { // 'use strict'; const countdown = document.getElementById("count"); function isCaptchaChecked() { return grecaptcha && grecaptcha.getResponse().length !== 0; }; setInterval(function() { if (document.querySelector("button")) { if (isCaptchaChecked()) { document.querySelector("button").click(); } } }, 500); setInterval(function() { if (countdown.innerText === "0") { if (document.querySelector("button")) { document.querySelector("button").click(); } } document.querySelector("#count").click(); }, 1000); })();