foes.io server selection in-game

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

  1. // ==UserScript==
  2. // @name foes.io server selection in-game
  3. // @namespace http://foes.io/*
  4. // @version 1.0
  5. // @description gives option to display server list while in-game, press '=' to show, '-' to hide
  6. // @author Meatman2tasty
  7. // @match https://foes.io/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. //server selection//
  12. document.addEventListener("keydown", function(a) { // Press 'z' to create account
  13. if (a.keyCode == 187) {
  14. $("#infoCard").css("display","block")
  15. }
  16. }, false);
  17.  
  18.  
  19. document.addEventListener("keydown", function(a) { // Press 'x' to log out
  20. if (a.keyCode == 189) {
  21. $("#infoCard").css("display","none")
  22. }
  23. }, false);

QingJ © 2025

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