Greasy Fork

Kirka.io Name and Level Changer

Menu and In game Lvl And Username/Level Changer

目前为 2023-08-28 提交的版本。查看 最新版本

// ==UserScript==
// @name         Kirka.io Name and Level Changer
// @namespace    https://discord.gg/4T6HGWTBd7
// @version      3.0
// @description   Menu and In game Lvl And Username/Level Changer
// @author       Jaguar
// @match        https://kirka.io/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=kirka.io
// @grant        none
// @license MIT
// ==/UserScript==
//----------------------------------------------
// Discord: https://discord.gg/n3ruS3jzvv //
//----------------------------------------------
var Username = "Custom_Username_Here";
var ClanTag = "Custom_ClanTag_Here"
var Level = "Custom_Level_Here";

function Update() {
    var lb = document.querySelector('.nickname.text-2.primary'); if (lb) lb.textContent = Username;
    var lb2 = document.querySelector('div[data-v-52b18b80].nickname.text-2.primary'); if (lb2) lb2.textContent = Username;
    document.querySelector('.nickname').textContent = Username;
    document.querySelector('.levels').textContent = Level;
    document.querySelector('.clan-tag').textContent = ClanTag;
    document.querySelector('.level-value').textContent = Level;
}
setInterval(Update, 100);