您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Automatic Tree Claiming
当前为
// ==UserScript== // @name Automatic Tree // @namespace Terminator.Scripts // @version 0.3.3 // @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(); } else { console.log("Strom nenalezen") } } function clickSkipButton() { var skipButtonElement = document.querySelector('a#skip_bu2tton'); if (skipButtonElement) { skipButtonElement.click(); window.close(); } } window.onload = function() { if (window.location.href.startsWith("https://scripts.cs2resellers.com/ads/?automatictree")) { setTimeout(function() { window.location.href = "https://knolix.com/"; }, 60000 * 10); } 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://knolix.com/')) { setInterval(function() { clickBtctree(); }, 60000 * 0.3); } else if (window.location.href.startsWith("https://ads.knolix.com/int/")) { setInterval(function() { clickSkipButton(); }, 60000 * 0.3); } else { window.location.href = "https://knolix.com/"; } } })();