Faceit lobby extension

Helper revealing players performance while map picking.

ما هو Faceit lobby extension؟

Faceit lobby extension هو إضافة Chrome تم تطويرها بواسطة http://tuscan.pro، والميزة الرئيسية لها هي "Helper revealing players performance while map picking.".

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

screenshot

تحميل ملف CRX للإضافة Faceit lobby extension

قم بتنزيل ملفات الامتداد Faceit lobby extension بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        This is a tool which helps during map picking on Faceit. The extension provides additional information about queued players performance on particular maps, thus it should help in making more thought-out decision about which map should be played or banned in the first place.                    

معلومات أساسية عن التمديد

الاسم Faceit lobby extension Faceit lobby extension
ID iocddpjkmoaaminicflaggnckdainlef
عنوان URL الرسمي https://chrome.google.com/webstore/detail/faceit-lobby-extension/iocddpjkmoaaminicflaggnckdainlef
الوصف Helper revealing players performance while map picking.
حجم الملف 62.7 KB
عدد التثبيتات 734
النسخة الحالية 0.1.0
آخر تحديث 2020-03-12
تاريخ النشر 2020-03-12
تقييم 4.50/5 مجموع تقييمات 2
المطور http://tuscan.pro
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Faceit lobby extension",
    "description": "Helper revealing players performance while map picking.",
    "version": "0.1.0",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "storage"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.faceit.com\/*",
                "https:\/\/tuscan.pro\/*"
            ],
            "js": [
                "js\/main.js"
            ]
        }
    ]
}