ESEA Ranks

Shows player ranks & MMR on match pages

ESEA Ranks क्या है?

ESEA Ranks hleV द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Shows player ranks & MMR on match pages"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में ESEA Ranks एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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 :)                    

एक्सटेंशन की मूल जानकारी

नाम ESEA Ranks ESEA Ranks
ID aojbflicmonbdpdafocjbmfgogcflnnl
आधिकारिक URL https://chromewebstore.google.com/detail/esea-ranks/aojbflicmonbdpdafocjbmfgogcflnnl
विवरण Shows player ranks & MMR on match pages
फ़ाइल का आकार 8.63 KB
स्थापना संख्या 101
वर्तमान संस्करण 1.6
अंतिम अपडेट 2020-08-16
प्रकाशन तिथि 2020-08-15
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर hleV
ईमेल [email protected]
भुगतान के प्रकार free
सहायता पृष्ठ URL https://github.com/hleVqq/EseaRanks/issues
समर्थित भाषाएँ 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"
    }
}