website treaw

Claim Free trpn

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==UserScript==
// @name         website treaw
// @namespace    Claim Free USDT
// @version      0.1
// @description  Claim Free trpn
// @author       scriptcoinsbotfaucet
// @match        https://treaw.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=treaw.com
// @grant        none
// @license      CopyLeft
// ==/UserScript==


//INSTALL THE SCRIPT AND HCAPTCHA SOLVER AND EDIT LINE 20 WITH YOUR FAUCETPAY ADDRESS

(function() {
    'use strict';

    var blockList = [
        "treaw.com##.captcha-adspace",
        "treaw.com##.top_adspace"
    ];
    var windowHostname = window.location.hostname;
    for(var i = 0; i < blockList.length; i++) {
        var entryParts = blockList[i].split('##');
        if(windowHostname === entryParts[0]) {
            var matchedElements = document.querySelectorAll(entryParts[1]);
            for(var j = 0; j < matchedElements.length; j++) {
                var matchedElem = matchedElements[j];
                matchedElem.parentNode.removeChild(matchedElem);
            }
        }
    }

    function getElementByXpath(path) {
        return document.evaluate(
            path,
            document,
            null,
            XPathResult.FIRST_ORDERED_NODE_TYPE,
            null
        ).singleNodeValue;
    }

    function docReady(fn) {
        if (document.readyState === "complete" || document.readyState === "interactive") {
            setTimeout(fn, 1);
        } else {
            document.addEventListener("DOMContentLoaded", fn);
        }
    }


    docReady(function() {

        if (window.location.href == ("https://ezbit.co.in/")){
            if (document.referrer != ('https://greasyfork.org/')){
                alert("Please Login over my Link")
                window.location.replace("https://greasyfork.org/de/scripts/478069-final-ezbit")
            }
        }

        if(document.querySelector("#address")){
            document.querySelector("#address").value = "[email protected]";
        }

        setInterval(function() {
            if(!document.querySelector("#captchaModal")){
                if (document.querySelector("#algo").textContent.includes("Login") ){
                    document.querySelector("#algo").click();
                }
            }
        },5000);

        setInterval(function() {
            if(document.querySelector("#captchaModal")){
               if(document.querySelector("#login").textContent.includes("Verify Captcha")){
                    document.querySelector("#login").click();
               }
            }
        },15000);
            

/*
        var y = $(window).scrollTop();
        $('html, body').animate({ scrollTop: y + 900})
*/
        setTimeout(() => {
            location.reload();
        }, 300000);



    })
})();