您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Lets make things easy
// ==UserScript== // @name Faucet bitonsoccer - website down // @namespace http://tampermonkey.net/ // @version 0.3 // @description Lets make things easy // @author vikiweb // @match https://faucet.bitonsoccer.co/* // @icon https://www.google.com/s2/favicons?sz=64&domain=bitonsoccer.co // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; let btc = '16Lfq4QC9Lgbse4oggWUVAe1e6Rv7o6ELn'; let ltc = 'MPKodg6ph2Yb8jgqsJdgs6Nx52FFa6h2jT'; let doge = 'D7e1C6xBNsuVUcy6JGEdRaqtHsXM1wnrVP'; let sites = [ 'https://faucet.bitonsoccer.co/?r=16Lfq4QC9Lgbse4oggWUVAe1e6Rv7o6ELn', 'https://faucet.bitonsoccer.co/ltc/?r=MPKodg6ph2Yb8jgqsJdgs6Nx52FFa6h2jT', 'https://faucet.bitonsoccer.co/doge/?r=D7e1C6xBNsuVUcy6JGEdRaqtHsXM1wnrVP']; let currentFaucetUrl = window.location.href.split('?')[0]; let currentIndex = sites.findIndex(site => site.split('?')[0] === currentFaucetUrl); function movetonext() { if (currentIndex === sites.length - 1) { currentIndex = 0; console.log("All sites visited. Starting from 0 again."); } else { currentIndex++; } window.location.href = sites[currentIndex]; } if (currentFaucetUrl.indexOf("index.php") !== -1) { var newUrl = currentFaucetUrl.replace("index.php", ""); var index = newUrl.indexOf("?"); if (index !== -1) { newUrl = newUrl.substring(0, index); } window.location.href = newUrl; } function isCaptchaChecked() { return grecaptcha && grecaptcha.getResponse().length !== 0; } setInterval(function(){ if(window.location.href == 'https://faucet.bitonsoccer.co/'){ if(document.querySelector("input[name='address']")){ document.querySelector("input[name='address']").value = btc } } else if(window.location.href.includes("/ltc/")){ if(document.querySelector("input[name='address']")){ document.querySelector("input[name='address']").value = ltc } }else if (window.location.href.includes("/doge/")){ if(document.querySelector("input[name='address']")){ document.querySelector("input[name='address']").value = doge } } if(document.querySelector("button[name='loginpage'][type='submit']")){ document.querySelector("button[name='loginpage'][type='submit']").click() } if(document.querySelector("button[name='gologin'][type='submit']")){ document.querySelector("button[name='gologin'][type='submit']").click() } if(document.querySelector("#demo")){ movetonext() } if(window.location.href.includes("/ltc/") || window.location.href.includes("/doge/")){ if(document.querySelector("button[name='claim'][type='submit']")){ if(isCaptchaChecked()){ document.querySelector("button[name='claim'][type='submit']").click() } } }else{ if(document.querySelector("button[name='claim'][type='submit']")){ if(isCaptchaChecked()){ document.querySelector("button[name='claim'][type='submit']").click() } } } }, 20000) })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址