AgroMod: The Only Agar.io Merge Timer

Take your Agar game to the next level with a tactical merge timer, 7-w hotkey for virus attacks, and persistent settings.

¿Qué es AgroMod: The Only Agar.io Merge Timer?

AgroMod: The Only Agar.io Merge Timer es una extensión de Chrome desarrollada por https://sandhoefner.github.io, y su función principal es "Take your Agar game to the next level with a tactical merge timer, 7-w hotkey for virus attacks, and persistent settings.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión AgroMod: The Only Agar.io Merge Timer

Descarga archivos de extensión AgroMod: The Only Agar.io Merge Timer en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        MERGE TIMER:
A dynamic timer to inform your tactics in the crucial moments between split and merge. The time you have to wait between split and merge is calculated as 30 seconds + (7/300) * mass, according to the Agar.io wiki. When you press spacebar, a 30 second timer will start immediately in the top-left corner of the screen. If you then type your mass and press enter, the timer will adjust accordingly. This can be done at any point while the timer is running. The mod currently only supports one timer at a time, so if you split into 4 cells, you'll only be able to see the time for the first split.

-Accidentally entered the wrong mass for the timer? No problem! Just enter the correct mass and it'll adjust again. You can do this as many times as necessary, until the timer hits 0.
-Press "r" (as in "reset") while the timer is running to turn it off.
-No game deserves to be ended prematurely, so pressing "backspace" in-game will not cause you to leave the page. 

7-W HOTKEY:
Press "s" to shoot out 7 W's for fast and easy virus attacks.

PERSISTENT SETTINGS:
Click the Doge icon in your toolbar, then click "Settings". (Or navigate to chrome://extensions in your address bar, find the entry for Agar.io Mod, and click "Options".) A new tab will open in which you can save a nickname and checkbox settings. These options will load automatically every time you play, and you can change them as often as you like. Changing the settings in the game won't change your permanent auto settings.

***

If you enjoy the app and have a moment, please do rate and review. It means a lot!

***

TECHNICAL NOTES:
The merge timer is inherently only an estimate, because the actual formula for merge time is both secret and potentially complicated beyond the means of a simple extension.

I'll try to update this once in a while, but it is a side project for me, and extensions have a tendency to grow new bugs over time as the site they're extending changes... so please bear with me! In the meantime, if you have functionality requests or bugs to report, please don't hesitate to contact me through the Chrome store.                    

Información Básica de la Extensión

Nombre AgroMod: The Only Agar.io Merge Timer AgroMod: The Only Agar.io Merge Timer
ID kekfokjeliilaipagomdhmlfhbmpllkk
URL Oficial https://chromewebstore.google.com/detail/agromod-the-only-agario-m/kekfokjeliilaipagomdhmlfhbmpllkk
Descripción Take your Agar game to the next level with a tactical merge timer, 7-w hotkey for virus attacks, and persistent settings.
Tamaño del Archivo 111 KB
Cantidad de Instalaciones 6,077
Versión Actual 1.3.2
Última Actualización 2016-08-19
Fecha de Publicación 2016-08-19
Calificación 3.19/5 Total de 125 Calificaciones
Desarrollador https://sandhoefner.github.io
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AgroMod: The Only Agar.io Merge Timer",
    "short_name": "AgroMod",
    "description": "Take your Agar game to the next level with a tactical merge timer, 7-w hotkey for virus attacks, and persistent settings.",
    "version": "1.3.2",
    "page_action": {
        "default_icon": {
            "19": "doge-19.png",
            "38": "doge-38.png"
        },
        "default_title": "AgroMod",
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        "options.html"
    ],
    "author": "Evan Sandhoefner",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/agar.io\/*"
            ],
            "js": [
                "d3.js",
                "page.js",
                "jquery.js"
            ]
        }
    ],
    "options_page": "options.html",
    "permissions": [
        "storage",
        "declarativeContent"
    ],
    "icons": {
        "16": "doge-16-.png",
        "48": "doge-48-.png",
        "128": "doge-128-.png"
    },
    "manifest_version": 2
}