foes.io server selection in-game

gives option to display server list while in-game, press '=' to show, '-' to hide

// ==UserScript==
// @name         foes.io server selection in-game
// @namespace    http://foes.io/*
// @version      1.0
// @description  gives option to display server list while in-game, press '=' to show, '-' to hide
// @author       Meatman2tasty
// @match        https://foes.io/*
// @grant        none
// ==/UserScript==

//server selection//
document.addEventListener("keydown", function(a) { // Press 'z' to create account
    if (a.keyCode == 187) {
$("#infoCard").css("display","block")
    }
}, false);


document.addEventListener("keydown", function(a) { // Press 'x' to log out
    if (a.keyCode == 189) {
$("#infoCard").css("display","none")
    }
}, false);

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址