您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
CLaim Free Shib, BTC, Cardano, Steam, Tether, USDC, USDT, Nem, binance, Ethereum, XRP, Tron, Dash, Chain, Neo, LTC, and Doge Faucets all in one script!
当前为
// ==UserScript== // @name 16 Free faucets all in one script! // @namespace http://tampermonkey.net/ // @version 0.2 // @description CLaim Free Shib, BTC, Cardano, Steam, Tether, USDC, USDT, Nem, binance, Ethereum, XRP, Tron, Dash, Chain, Neo, LTC, and Doge Faucets all in one script! // @author Elmer76 // @match https://freeshibainu.com/* // @match https://freebitcoin.io/* // @match https://freecardano.com/* // @match https://freesteam.io/* // @match https://freetether.com/* // @match https://freeusdcoin.com/* // @match https://coinfaucet.io/* // @match https://freenem.com/* // @match https://freebinancecoin.com/* // @match https://freeethereum.com/* // @match https://free-tron.com/* // @match https://freedash.io/* // @match https://freechainlink.io/* // @match https://freeneo.io/* // @match https://free-ltc.com/* // @match https://free-doge.com/* // @license MIT // @icon https://www.google.com/s2/favicons?domain=freeshibainu.com // @grant GM_setValue // @grant GM_getValue // ==/UserScript== /* ================================================================================================================================================== | | donate please btc : 36v6NbQCeDp1LHDtpJgoBMq7u3J5zWipDW | | | | Please use my referal link https://freecardano.com/?ref=436322 | | https://freebitcoin.io/?ref=635397 | | https://freesteam.io/?ref=151488 | | https://freetether.com/?ref=254231 | | https://freeusdcoin.com/?ref=184874 | | https://freeshibainu.com/?ref=69021 | | https://coinfaucet.io/?ref=904491 | | https://freenem.com/?ref=333717 | | https://freebinancecoin.com/?ref=303024 | | https://freeethereum.com/?ref=321852 | | https://free-tron.com/?ref=377368 | | https://freedash.io/?ref=189307 | | https://freechainlink.io/?ref=116426 | | https://freeneo.io/?ref=144629 | | https://free-ltc.com/?ref=198898 | | https://free-doge.com/?ref=234988 | | TY and enjoy | ================================================================================================================================================== */ // Install the Hcaptcha Solver to solve Recaptcha: http://greasyfork.icu/es/scripts/425854-hcaptcha-solver-automatically-solves-hcaptcha-in-browser const email = "" const password = "" const websites = [ "freebitcoin.io", "freenem.com", "coinfaucet.io", "freecardano.com", "freesteam.io", "freetether.com", "free-ltc.com", "freeusdcoin.com", "freeneo.io", "freebinancecoin.com", "free-tron.com", "freeethereum.com", "freedash.io", "freeshibainu.com", "freechainlink.io", "free-doge.com" ] setTimeout(function() { 'use strict'; // Automatic Login AutoLogin(); // Roll when possible if (document.querySelector("div[class='roll-wrapper']").style.display !== "none") { document.querySelector("button[class='main-button-2 roll-button bg-2']").click() AutoSwitch(); // Automatic page switching } //every 10 minutes the page will be refreshed to check if you can roll again setTimeout(function(){ location.reload(); }, 10*60*1000); },2000); // Autom Login function AutoLogin() { var login_form = document.getElementsByClassName('login-wrapper wrapper bg-1'); if (login_form.length == 1) { var inputs = login_form[0].getElementsByTagName("input"); var button = login_form[0].getElementsByTagName("button")[0]; inputs[1].value = email; inputs[2].value = password; button.click() } } // Auto Page Switching function AutoSwitch() { setTimeout(function() { var current_page_id = websites.indexOf(window.location.hostname) var next_page_id = (current_page_id < websites.length - 1) ? current_page_id + 1 : 0; window.location.href = window.location.protocol + "//" + websites[next_page_id] },2000); }