CS2 Faceit Stats

Browser extension displays a users stats on FACEIT on their Steam profile.

Что такое CS2 Faceit Stats?

CS2 Faceit Stats - это расширение Chrome, разработанное nol1cx, и его основная функция - "Browser extension displays a users stats on FACEIT on their Steam profile.".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения CS2 Faceit Stats

Скачайте файлы расширений CS2 Faceit Stats в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Faceit stats by nol1cx is a browser extension that displays user stats from FACEIT.com on their Steam profile. Therefore it may be used as a shortcut to find more information quickly on the users FACEIT stats without having to go over to the platform.                    

Основная информация о расширении

Название CS2 Faceit Stats CS2 Faceit Stats
ID hhamdfhacjkmpefgmpehalapnoopakmk
Официальный URL https://chromewebstore.google.com/detail/cs2-faceit-stats/hhamdfhacjkmpefgmpehalapnoopakmk
Описание Browser extension displays a users stats on FACEIT on their Steam profile.
Размер файла 405 KB
Количество установок 113
Текущая Версия 3.2
Последнее Обновление 2024-02-22
Дата публикации 2023-11-28
Рейтинг 3.00/5 Всего 2 оценок
Разработчик nol1cx
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://vk.com/gpgesports
URL страницы помощи https://vk.com/gpgesports
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CS2 Faceit Stats",
    "icons": {
        "16": "img\/logo.png",
        "48": "img\/logo.png",
        "128": "img\/logo.png"
    },
    "version": "3.2",
    "manifest_version": 3,
    "homepage_url": "https:\/\/vk.com\/gpgesports",
    "description": "Browser extension displays a users stats on FACEIT on their Steam profile.",
    "action": {
        "default_icon": "img\/logo.png",
        "default_title": "CS2 Faceit Stats"
    },
    "background": {
        "service_worker": "scripts\/background.js"
    },
    "host_permissions": [
        "https:\/\/api.faceit.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.steamcommunity.com\/id\/*",
                "*:\/\/*.steamcommunity.com\/profiles\/*"
            ],
            "exclude_matches": [
                "*:\/\/*.steamcommunity.com\/id\/*\/allcomments*",
                "*:\/\/*.steamcommunity.com\/profiles\/*\/allcomments*"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "scripts\/main_new.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "img\/levels\/1.svg",
                "img\/levels\/2.svg",
                "img\/levels\/3.svg",
                "img\/levels\/4.svg",
                "img\/levels\/5.svg",
                "img\/levels\/6.svg",
                "img\/levels\/7.svg",
                "img\/levels\/8.svg",
                "img\/levels\/9.svg",
                "img\/levels\/10.svg",
                "img\/levels\/unranked.svg"
            ],
            "matches": [
                ""
            ]
        }
    ]
}