CoinPayz

Auto Shorts

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         CoinPayz
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  Auto Shorts
// @author       keno venas
// @license      MIT
// @match        https://coinpayz.xyz/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=coinpayz.xyz
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    function clicarComDelay() {
        setTimeout(function() {
            var botao = document.querySelector('.col-lg-3:nth-child(1) .btn');
            if (botao) {
                botao.click();
            } else {
                console.log('Botão não encontrado.');
            }
        }, 5000);
    }
    clicarComDelay();
    if (window.location.href === "https://coinpayz.xyz/dashboard") {
        window.location.href = "https://coinpayz.xyz/links";
    }
    function removerCartoes() {
        var cartoes = document.querySelectorAll('div[class="col-lg-3"]');
        cartoes.forEach(function(cartao) {
            var textoCartao = cartao.innerText;
            if (textoCartao.includes("Earnow") ||
                textoCartao.includes("Revcut") ||
                textoCartao.includes("Cutlink") ||
                textoCartao.includes("Easycut") ||
                textoCartao.includes("Earnow") ||
                textoCartao.includes("Ctr.sh")) {
                // Remover o cartão
                cartao.remove();
            }
        });
    }
    removerCartoes();
})();