Greasy Fork

Free SHIBA INU

CLaim Free Shiba Inu every hour

目前为 2021-12-01 提交的版本。查看 最新版本

// ==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
// ==/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);
})();