Krunker Infinite Kr (Visual Only)

Infinite Kr

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         Krunker Infinite Kr (Visual Only)
// @namespace    https://discord.gg/4T6HGWTBd7
// @version      1.0
// @description   Infinite Kr
// @author       Jaguar
// @match        https://krunker.io/*
// @icon        https://media.discordapp.net/attachments/1139643669385846934/1140016348806778930/images.jpg?width=247&height=130
// @grant        none
// @license MIT
// ==/UserScript==

// Discord- https://discord.gg/4T6HGWTBd7
// GitHub- https://github.com/Documantation12

const menuKRCountElement = document.getElementById('menuKRCount');
const hasLogin = localStorage.getItem('krunker_haslogin');
if (hasLogin === 'true') {
    if (menuKRCountElement) {
        let currentNumber = parseInt(menuKRCountElement.textContent) || 0;
        setInterval(() => {
            menuKRCountElement.innerHTML = `${(currentNumber += 100) || 0} <span style="color:#fbc02d">KR</span>`;
        }, 1);
    } else {
        console.log("Menu KR Count element not found.");
    }
} else {
    const userResponse = confirm("Please log in to see your KR count.\nPress OK to log in or Cancel to continue without logging in.");
    if (userResponse) {
        localStorage.setItem('krunker_haslogin', 'true');
    }
}