Greasy Fork

Free multicrypto Auto Faucet. FREE CRYPTO EVERY HOUR!!!!

Auto Faucet Script by Butterlvr6

目前为 2021-02-11 提交的版本。查看 最新版本

// ==UserScript==
// @name Free multicrypto Auto Faucet. FREE CRYPTO EVERY HOUR!!!!
// @description Auto Faucet Script by Butterlvr6
// @author Butterlvr6
// @version 1.2
// @namespace hi
// @match https://freebitcoin.io/*
// @match https://freenem.com/*
// @match https://coinfaucet.io/*
// @match https://freecardano.com/*
// @match https://freesteam.io/*
// @match https://freetether.com/*
// @match https://free-ltc.com/*
// @match https://freeusdcoin.com/*
// @match https://freeneo.io/*
// @match https://freebinancecoin.com/*
// @grant GM_setValue
// @grant GM_getValue
// ==/UserScript==


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("button[class='main-button-2 roll-button bg-2']").click()
    }
    //every 10 minutes the page will be refreshed to check if you can roll again
    setTimeout(function(){ location.reload(); }, 10*60*1000);

},2000);