Greasy Fork

Free Faucet Unlimited Tron (10 daily)

Earn Unlimited Tron

目前为 2021-09-13 提交的版本。查看 最新版本

// ==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
// ==/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);
})();