您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Claim Free BTC
// ==UserScript== // @name Free Faucet Biz // @namespace Claim Free BTC // @version 1.2 // @description Claim Free BTC // @author lotocamion // @match https://freefaucet.biz/* // @match https://freefaucet.biz/ // @icon https://www.google.com/s2/favicons?sz=64&domain=freefaucet.biz // @grant none // ==/UserScript== //GOTO https://freefaucet.biz/?ref=101268 AND SIGNUP //INSTALL RECAPTCHA SOLVER LINK => https://pastebin.com/n6sYgWzH //THEN GOTO https://freefaucet.biz/ AND LEAVE THE TAB OPEN (function() { 'use strict'; var click =setInterval(function() { if (window.grecaptcha.getResponse().length > 0) { document.querySelector("button[class='btn btn-danger btn-md w-100 mt-2']").click(); clearInterval(click); } }, 5000); setInterval(function() { if(document.querySelector(".alert.alert-success")) { window.location.replace(window.location.pathname + window.location.search + window.location.hash); }}, 5000); setInterval(function() { window.location.replace(window.location.pathname + window.location.search + window.location.hash); }, 90000); })();