Mini Map with Ghost Cells for Agar.io

Types console commands when the web page loads

  1. // ==UserScript==
  2. // @name Mini Map with Ghost Cells for Agar.io
  3. // @version 1.0
  4. // @description Types console commands when the web page loads
  5. // @match https://agar.io/*
  6. // @grant unsafeWindow
  7. // @author New Jack 🕹️
  8. // @icon https://i.imgur.com/WehPi6T.png
  9. // @license MIT
  10. // @namespace https://gf.qytechs.cn/users/1049139
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15.  
  16. // Define the console commands to type
  17. var commands = [
  18. 'core.setMinimap(1)',
  19. 'event.keyCode === 13',
  20. 'core.playersMinimap(1)',
  21. 'event.keyCode === 13'
  22. ];
  23.  
  24. // Type each command in the console
  25. commands.forEach(function(command) {
  26. unsafeWindow.console.log(command);
  27. unsafeWindow.eval(command);
  28. });
  29. })();

QingJ © 2025

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