Claim Bits

autologin + autoshorts com captcha embutido!

目前為 2024-05-08 提交的版本,檢視 最新版本

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

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

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 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);
        }
    }

})();