ESEA Ranks

Shows player ranks & MMR on match pages

What is ESEA Ranks?

ESEA Ranks is a Chrome extension developed by hleV, and its main feature is "Shows player ranks & MMR on match pages".

Extension Screenshots

screenshot

Download ESEA Ranks Extension CRX File

Download ESEA Ranks extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        This extension adds Rank and MMR columns to the stats table in ESEA match pages.

If you find this useful, you are welcome to donate via PayPal: 
https://paypal.me/hleVqq

Enjoy :)                    

Extension Basic Information

Name ESEA Ranks ESEA Ranks
ID aojbflicmonbdpdafocjbmfgogcflnnl
Official URL https://chromewebstore.google.com/detail/esea-ranks/aojbflicmonbdpdafocjbmfgogcflnnl
Description Shows player ranks & MMR on match pages
File Size 8.63 KB
Installation Count 101
Current Version 1.6
Last Updated 2020-08-16
Publish Date 2020-08-15
Rating 5.00/5 Total 1 Ratings
Developer hleV
Email [email protected]
Payment Type free
Help Page URL https://github.com/hleVqq/EseaRanks/issues
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ESEA Ranks",
    "version": "1.6",
    "description": "Shows player ranks & MMR on match pages",
    "permissions": [
        "webNavigation",
        "*:\/\/play.esea.net\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/play.esea.net\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "manifest_version": 2,
    "icons": {
        "16": "esea.png",
        "48": "esea.png",
        "128": "esea.png"
    },
    "browser_action": {
        "default_popup": "popup.html"
    }
}