free ltc

O amanhã será tarde demais !!!

当前为 2024-04-13 提交的版本,查看 最新版本

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         free ltc
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  O amanhã será tarde demais !!!
// @author       keno venas 
// @license      MIT
// @match        https://freeltc.fun/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=freeltc.fun
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    if (window.location.href === "https://freeltc.fun/") {
        window.location.href = "https://freeltc.fun/faucet/currency/ltc";
    }
function redirecionarProximaURL() {
    const redirecionamentos = {
        "https://freeltc.fun/faucet/currency/ltc": "https://freeltc.fun/faucet/currency/doge",
        "https://freeltc.fun/faucet/currency/doge": "https://freeltc.fun/faucet/currency/dgb",
        "https://freeltc.fun/faucet/currency/dgb": "https://freeltc.fun/faucet/currency/sol",
        "https://freeltc.fun/faucet/currency/sol": "https://freeltc.fun/faucet/currency/trx",
        "https://freeltc.fun/faucet/currency/trx": "https://freeltc.fun/faucet/currency/bnb",
        "https://freeltc.fun/faucet/currency/bnb": "https://freeltc.fun/faucet/currency/bch",
        "https://freeltc.fun/faucet/currency/bch": "https://freeltc.fun/faucet/currency/dash",
        "https://freeltc.fun/faucet/currency/dash": "https://freeltc.fun/faucet/currency/eth",
        "https://freeltc.fun/faucet/currency/eth": "https://freeltc.fun/faucet/currency/fey",
        "https://freeltc.fun/faucet/currency/fey": "https://freeltc.fun/faucet/currency/zec",
        "https://freeltc.fun/faucet/currency/zec": "https://freeltc.fun/faucet/currency/ltc"
    };

    const urlAtual = window.location.href;
    if (urlAtual in redirecionamentos) {
        const proximaURL = redirecionamentos[urlAtual];
        setTimeout(function() {
            window.location.href = proximaURL;
        }, 5000);
    }
}
function verificarMutacao(mutationsList, observer) {
    for (const mutation of mutationsList) {
        if (mutation.type === 'childList') {
            const alertPrimary = document.querySelector('div.alert-primary');
            if (alertPrimary) {
                redirecionarProximaURL();
                observer.disconnect();
                break;
            }
        }
    }
}
function detectTextOnPage(text) {
    return document.body.innerText.includes(text);
}
const observer = new MutationObserver(verificarMutacao);
observer.observe(document.body, { childList: true, subtree: true });
let claim2 = setInterval(function (){
    let turnstile = document.querySelector("input[name='cf-turnstile-response']")
    let button = document.querySelector("button[data-target='#myModal']:not([disabled])")
    let button2 = document.querySelector("button.btn",)
    if(button){
        button.click();
    }
    if(button2 && turnstile && turnstile.value.length > 0){
        setTimeout(function() { window.location.reload() }, 60000)
        button2.click();
        clearInterval(claim2);
    }

},2000)


})();