open minimap on agario
当前为
// ==UserScript==
// @name Agar.io minimap 2024
// @namespace http://tampermonkey.net/
// @version 120
// @description open minimap on agario
// @author thanghc
// @icon https://www.google.com/s2/favicons?sz=64&domain=greasyfork.org
// @include http://agar.io/*
// @include https://agar.io/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
$(document).ready(function() {
$(document).on('keydown', function(e) {
var key = e.which || e.keyCode;
if(key == 77) { // key M
core.playersMinimap(1)
core.setMinimap(1)
}
});
});
})();