Claim Free LTC Every Second With Shortlink Option

Claim Free LTC

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         Claim Free LTC Every Second With Shortlink Option
// @namespace    Claim Free LTC
// @version      1.0
// @description  Claim Free LTC
// @author       someone elsee
// @match        https://crypto-earning.xyz/
// @match        https://crypto-earning.xyz/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=crypto-earning.xyz
// @grant        none
// ==/UserScript==

(function() {
    'use strict';


    var clicked = true;// SET TO false; ENABLE SHORTLINK // SET TO true; DISABLE SHORTLINK
    var address = false;
    if($('.form-control')) {
    $(".form-control").val("MPC1Jf4AqyQZ43y2f1gCs2WsyqdHSBDiPG");////EDIT YOUR ADDRESS HERE/////
    address = true;
    }

    setInterval(function() {
    if (window.grecaptcha.getResponse().length > 0) {
    document.querySelector("input[value='---------------CLAIM HERE---------------']").click();
    }
    }, 10000);

    setInterval(function() {
    if(!clicked && document.querySelector("a[href='/']")){
    document.querySelector("a[href='/']").click();
    clicked = true;
    } }, 30000);

    setTimeout(function() {
    if (document.querySelector("body > center:nth-child(2) > div")) {
    window.location.replace("https://crypto-earning.xyz/?r=MLda3TqfG8DipJv6H8pP6vvZcXwe3HLR83");
    }
    }, 30000);


    })();