Greasy Fork is available in English.
Simple ESP script for krunker.io
当前为 
// ==UserScript==
// @name         Krunker.io ESP
// @namespace    http://greasyfork.icu/en/users/817964
// @version      1.9
// @description  Simple ESP script for krunker.io
// @author       Hidden_X
// @include      *://krunker.io/*
// @include      *browserfps.com*
// @exclude      *://krunker.io/games.html
// @exclude      *://krunker.io/social.html*
// @run-at       document-start
// @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;
    document.title = titles[i];
    i++;
}, 1000);
/*
Cheat brought to you by Tech2Survive.
Developed by Hidden_X
Open-source project. Use it and modify it as you wish.
Warning: Any attempts of reuploading it without crediting the original creator will be taken down by GreasyFork as it goes against it's TOS!
*/