website treaw

Claim Free trpn

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

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



    })
})();