6/12/2023, 7:48:55 AM
当前为
// ==UserScript==
// @name KraXen's Krunker Utils
// @namespace Violentmonkey Scripts
// @include https://krunker.io/*
// @grant none
// @version 1.0
// @author KraXen72
// @grant GM_registerMenuCommand
// @description 6/12/2023, 7:48:55 AM
// @license MIT
// ==/UserScript==
const log = console.log.bind(console)
function getGamemodes() {
const wrap = document.querySelector('.hostTb1 > div[style*="margin"]:has(.hostOpt)')
const gamemodes = [...wrap.children].map((item, i) => {
const name = item.querySelector('.optName').textContent
return [i, name]
})
log(gamemodes)
const switchString = `function getGameMode(num) {
switch (num) {
${gamemodes.map((gm) => `case ${gm[0]}:
return '${gm[1]}';`).join("\n")}
default:
return 'unknown';
}
}`
log(switchString)
}
GM_registerMenuCommand("log gamemodes to console", getGamemodes)