Greasy Fork is available in English.

Free Faucet Shiba Inu

Shiba Inu mini script

// ==UserScript==
// @name         Free Faucet Shiba Inu
// @namespace    http://tampermonkey.net/
// @version      0.3
// @description  Shiba Inu mini script
// @author       Jean
// @match        https://shiba-faucoin.com
// @match        https://shiba-faucoin.com/*
// @icon         https://www.google.com/s2/favicons?domain=shiba-faucoin.com
// @grant        none
// ==/UserScript==

/*
 Use this reCaptcha solver: https://greasyfork.org/fr/scripts/430593-recaptcha-solver-automatically-solves-recaptcha-in-browser
*/

(function() {
    'use strict';

    // Your code here...
    var click = false;
    setInterval(function() {
        if (window.grecaptcha.getResponse().length > 0) {
            document.querySelector("#rf > a").click();
            click = true;
        }
    }, 2000);

    setTimeout(function() {
        window.location.reload();
        }, 300000);
})();