Automatic Tree

Automatic Tree Claiming

目前為 2023-12-14 提交的版本,檢視 最新版本

// ==UserScript==
// @name         Automatic Tree
// @namespace    Terminator.Scripts
// @version      0.1
// @description  Automatic Tree Claiming
// @author       TERMINATOR
// @license      MIT
// @match        https://knolix.com/62cc6b1f5a64c/
// @icon         https://www.google.com/s2/favicons?sz=64&domain=knolix.com
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    function clickBtctree() {
        var btctreeElement = document.getElementById('btctree');
        if (btctreeElement) {
            btctreeElement.click();
        }
    }
    setInterval(function() {
        clickBtctree();
    }, 60000 * 10);
})();
长期地址
遇到问题?请前往 GitHub 提 Issues。