Krunker.io ESP

Simple ESP script for krunker.io (now featuring AD-block enhancer!)

目前為 2021-10-22 提交的版本,檢視 最新版本

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         Krunker.io ESP
// @namespace    https://greasyfork.org/en/users/817964
// @version      2.2
// @description  Simple ESP script for krunker.io (now featuring AD-block enhancer!)
// @author       Hidden_X
// @include      *://krunker.io/*
// @include      *browserfps.com*
// @exclude      *://krunker.io/games.html
// @exclude      *://krunker.io/social.html*
// @run-at       document-start
// @require      https://greasyfork.org/scripts/18490-ads-dom-remover-runner/code/Ads%20DOM%20Remover%20Runner.js?version=827996
// @license      GNU General Public License v2.0
// @grant        none
// ==/UserScript==

// ESP code
Object.defineProperty(Object.prototype, 'cnBSeen', {value: true, enumerable: false});

// UI elements
const titles = ["Krunker | Simple ESP", "Made by Hidden_X"];
let i = 0;

setInterval(() => {
    i = i % 2; // <-- number of titles.
    document.title = titles[i];
    i++;
}, 1250); // <-- delay between each title.




/*
Developed by Hidden_X
    - on behalf of Tech2Survive

This is an open-source and copyright-free project. You can use it and modify it as you wish.
Warning: Any attempts of reuploading it without permission from the original creator (Hidden_X) will be taken down by GreasyFork as it goes against it's TOS!

· Copyright is for cowards ·
*/