ESEA Ranks

Shows player ranks & MMR on match pages

ما هو ESEA Ranks؟

ESEA Ranks هو إضافة Chrome تم تطويرها بواسطة hleV، والميزة الرئيسية لها هي "Shows player ranks & MMR on match pages".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة ESEA Ranks

قم بتنزيل ملفات الامتداد ESEA Ranks بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة المساعدة 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"
    }
}