Free SHIBA INU

CLaim Free Shiba Inu every hour

// ==UserScript==
// @name         Free SHIBA INU
// @namespace    http://tampermonkey.net/
// @version      0.2
// @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

setTimeout(function() {
    'use strict';

    console.log(document.querySelector("div[class='roll-wrapper']").style.display !== 'none');

    if (document.querySelector("div[class='roll-wrapper']").style.display !== "none") {
        //document.querySelector("body > main > div > div > div > div > div > div.roll-wrapper > button").click();
        document.querySelector("button[class='main-button-2 roll-button bg-2']").click()
    }

    setTimeout(function(){ location.reload(); }, 10*60*1000);

},2000);