Agar.io minimap 2024

open minimap on agario

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Agar.io minimap 2024
// @namespace    http://tampermonkey.net/
// @version      121
// @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/*
// @match        *://*.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)
			}
		});
	});
})();