Automatic Tree

Automatic Tree Claiming

Versão de: 17/12/2023. Veja: a última versão.

// ==UserScript==
// @name         Automatic Tree
// @namespace    Terminator.Scripts
// @version      0.4.1
// @description  Automatic Tree Claiming
// @author       TERMINATOR
// @license      MIT
// @match        https://knolix.com/*
// @match        https://ads.knolix.com/int/*
// @match        https://scripts.cs2resellers.com/ads/?automatictree
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    function clickBtctree() {
        var btctreeElement = document.getElementById('btctree');
        if (btctreeElement) {
            btctreeElement.click();
        }
    }

    if (window.location.href.startsWith("https://scripts.cs2resellers.com/ads/?automatictree")) {
        setTimeout(() => {
            window.location.href = "https://knolix.com/";
        }, 60000 * 30);
    } else if (window.location.href.startsWith("https://knolix.com/harvest.php?reward_token=")) {
        window.location.href = "https://scripts.cs2resellers.com/ads/?automatictree";
    } else if (window.location.href.startsWith("https://ads.knolix.com/int/")) {
        setTimeout(() => {
            clickSkipButton();
        }, 60000 * 0.3);
    } else if (window.location.href.startsWith('https://knolix.com/')) {
        setInterval(() => {
            clickBtctree();
        }, 60000 * 0.5);
    }

    function clickSkipButton() {
        var skipButtonElement = document.querySelector('a#skip_bu2tton');
        if (skipButtonElement) {
            skipButtonElement.click();
            window.close();
        }
    }

})();
长期地址
遇到问题?请前往 GitHub 提 Issues。