// ==UserScript== // @name Free Faucet Unlimited Tron (10 daily) // @namespace http://tampermonkey.net/ // @version 0.4 // @description Earn Unlimited Tron // @author Jean // @match https://freefaucet.biz // @match https://freefaucet.biz/* // @icon https://www.google.com/s2/favicons?domain=freefaucet.biz // @grant none // @downloadURL https://update.greasyfork.icu/scripts/431676/Free%20Faucet%20Unlimited%20Tron%20%2810%20daily%29.user.js // @updateURL https://update.greasyfork.icu/scripts/431676/Free%20Faucet%20Unlimited%20Tron%20%2810%20daily%29.meta.js // ==/UserScript== /* Use this reCaptcha solver: https://greasyfork.org/fr/scripts/430593-recaptcha-solver-automatically-solves-recaptcha-in-browser */ (function() { 'use strict'; //Edit you adress TRON (Faucetpay) var tron = "TUk83WVktUwKRqAMwrHUD427PFEyzja8Rg"; var button = false; setInterval(function() { if (document.querySelector("body > div:nth-child(3) > div.col-md-6 > div > form > div > center > input")) { document.querySelector("body > div:nth-child(3) > div.col-md-6 > div > form > div > center > input").value = tron; } if ((document.querySelector("body > div:nth-child(3) > div.col-md-6 > div > form > button")) && (button == false) && (window.location.href.includes("https://freefaucet.biz/index.php"))) { document.querySelector("body > div:nth-child(3) > div.col-md-6 > div > form > button").click(); button = true; } setTimeout(function() { if (window.grecaptcha.getResponse().length > 0) { document.querySelector("body > div:nth-child(3) > div.col-md-6 > div > form > button").click(); }}, 3000); if ((document.querySelector("body > div:nth-child(3) > div.col-md-6 > div > div.alert.alert-danger") || (document.querySelector("body > div:nth-child(3) > div.col-md-6 > div > div:nth-child(7)")))) { window.location.reload(); } }, 2000); })();