您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Claim Free Coin
当前为
// ==UserScript== // @name Unlimited Crypto Faucet // @namespace Claim Free Coin // @version 0.2 // @description Claim Free Coin // @author vikiweb // @match https://getcoin.cryptopedia.id/* // @match https://getcoin.garudaapps.com/* // @match https://getcoin.rajawaliapps.com/* // @match https://getcoin.tribuncrypto.net/* // @match https://getcoin.coi.my.id/* // @icon https://www.google.com/s2/favicons?sz=64&domain=getcoin.cryptopedia.id // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; let faucetpay_email = "email address"; let main_address = window.location.origin; function isCaptchaChecked() { return grecaptcha && grecaptcha.getResponse().length !== 0; } function visibleCheck(elm) { if(!elm.offsetHeight && !elm.offsetWidth) { return false; } if(getComputedStyle(elm).visibility === 'hidden') { return false; } return true; } if(window.location.origin === main_address){ console.log('test'); setInterval(function() { if (document.querySelector("#email")) { document.querySelector("#email").value = faucetpay_email; } }, 1000); setInterval(function() { if (isCaptchaChecked()) { if (document.querySelector(".btn-block[type='submit']")) { document.querySelector(".btn-block[type='submit']").click(); } } }, 6000); } if (window.location.href.includes("/user/dashboard") || window.location.href.includes("/User/Dashboard")) { console.log('true'); setTimeout(() => { window.location.replace(main_address + "/user/faucet/BTC") }, 60000); } setInterval(function() { if (window.location.href.includes("/user/faucet/")){ if (isCaptchaChecked()) { if (document.querySelector(".btn-block[type='submit']") && !visibleCheck(document.querySelector("#timerDiv.alert-danger #box h1"))) { document.querySelector(".btn-block[type='submit']").click(); } } } if(document.querySelector("#timerDiv.alert-danger #box h1")){ if(visibleCheck(document.querySelector("#timerDiv.alert-danger #box h1"))){ window.location.replace(main_address + "/user/dashboard") } } }, 5000); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址