Claim Bits

autologin + autoshorts com captcha embutido!

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey, Greasemonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

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

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

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

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्क्रिप्ट व्यवस्थापक एक्स्टेंशन इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्क्रिप्ट व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्टाईल व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

// ==UserScript==
// @name         Claim Bits
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  autologin + autoshorts com captcha embutido!
// @author       Keno Venas
// @match        https://claimbits.net/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=claimbits.net
// @license      MIT
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    var messageDiv = document.createElement('div');
    messageDiv.style.position = 'fixed';
    messageDiv.style.top = '20px';
    messageDiv.style.left = '20px';
    messageDiv.style.padding = '10px';
    messageDiv.style.backgroundColor = 'blue';
    messageDiv.style.color = 'black';
    messageDiv.style.borderRadius = '5px';
    messageDiv.style.zIndex = '9999';
    messageDiv.textContent = 'Criado por Keno Venas !!!';
    document.body.appendChild(messageDiv);
    function clicarComDelay() {
        setTimeout(function() {
            var botao = document.querySelector('button[class="btn btn-success btn-sm"]');
            if (botao) {
                botao.click();
            } else {
                console.log('Botão não encontrado.');
            }
        }, 5000);
    }
    clicarComDelay();
    if (window.location.href === "https://claimbits.net/faucet.html") {
        window.location.href = "http://linksfly.link/claimbits-net-shortlinks-html";
    }
    function clickButton(button, delay) {
        setTimeout(function() {
            button.click();
        }, delay);
    }
    function autoLogin() {
        var loginButton = document.querySelector('a.btn-info');
        // Seletor do campo de email
        var emailInput = document.querySelector('input[placeholder="Username / Email"]');
        var passwordInput = document.querySelector('input[placeholder="Password"]');
        var submitButton = document.querySelector('button[id="login-sub-btn"]');
        if (loginButton && emailInput && passwordInput && submitButton) {
            clickButton(loginButton, 2000);
            setTimeout(function() {
                emailInput.value = "[email protected]";
            }, 2000);
            setTimeout(function() {
                passwordInput.value = "suasenha";
            }, 3000);
            clickButton(submitButton, 15000);
        }
    }
    autoLogin();
  var keywords = ["chainfo.xyz",
"adlink.click",
"clk.sh",
"clicksfly.com",
"shortox.com",
"exe.io",
"linksly.co",
"birdurls.com",
"illink.net",
"insfly.pw",
"revly.click",
"fc.lc",
"revcut.net",
"bitad.org",
"faho.us",
"urlcut.pro",
"kyshort.xyz",
"linkrex.net",
"shortino.link",
"wez.info",
"megafly.in",
"cashurl.win",
"shorti.io",
"shrinkme.link",
"inlinks.online",
"bitss.sbs",
"linkjust.com",
"rsshort.com",
"earnow.online",
"clks.pro",
"easycut.io",
"shrinkearn.com",
"shortox.com",
"owllink.net",
"cutlink.xyz",
"megaurl.in",
"usalink.io",
"oii.io",
"ex-foary.com"
];

    var xpathExpressions = keywords.map(function(keyword) {
        return "//tr[td[contains(text(), '" + keyword + "')]]";
    });

    for (var i = 0; i < xpathExpressions.length; i++) {
        var xpathExpression = xpathExpressions[i];
        var matchingElements = document.evaluate(xpathExpression, document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null);
        for (var j = 0; j < matchingElements.snapshotLength; j++) {
            var element = matchingElements.snapshotItem(j);
            element.parentNode.removeChild(element);
        }
    }

})();