website treaw

Claim Free trpn

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

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.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

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



    })
})();