// ==UserScript== // @name Free SHIBA INU // @namespace http://tampermonkey.net/ // @version 0.1 // @description CLaim Free Shiba Inu every hour // @author Jean // @match https://freeshibainu.com/* // @icon https://www.google.com/s2/favicons?domain=freeshibainu.com // @grant none // @downloadURL none // ==/UserScript== // Install the Hcaptcha Solver to solve Recaptcha: https://greasyfork.org/es/scripts/425854-hcaptcha-solver-automatically-solves-hcaptcha-in-browser (function() { 'use strict'; document.querySelector("body > main > div > div > div > div > div > div.roll-wrapper > button").click(); setTimeout(function() { window.location.reload(); }, 3600000); })();