// ==UserScript== // @name Free multicrypto Auto Faucet // @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 // @downloadURL none // ==/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);