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.

O que é AgroMod: The Only Agar.io Merge Timer?

AgroMod: The Only Agar.io Merge Timer é uma extensão do Chrome desenvolvida por https://sandhoefner.github.io, e sua principal característica é "Take your Agar game to the next level with a tactical merge timer, 7-w hotkey for virus attacks, and persistent settings.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão AgroMod: The Only Agar.io Merge Timer

Baixe arquivos de extensão AgroMod: The Only Agar.io Merge Timer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome 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
Descrição Take your Agar game to the next level with a tactical merge timer, 7-w hotkey for virus attacks, and persistent settings.
Tamanho do Arquivo 111 KB
Contagem de Instalações 6,077
Versão Atual 1.3.2
Última Atualização 2016-08-19
Data de Publicação 2016-08-19
Classificação 3.19/5 Total de 125 Avaliações
Desenvolvedor https://sandhoefner.github.io
Tipo de Pagamento free
Idiomas Suportados 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
}