CS2 Faceit Stats

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

Co to jest CS2 Faceit Stats?

CS2 Faceit Stats to rozszerzenie Chrome opracowane przez nol1cx, a jego główną funkcją jest „Browser extension displays a users stats on FACEIT on their Steam profile.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia CS2 Faceit Stats

Pobierz pliki rozszerzeń CS2 Faceit Stats w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa CS2 Faceit Stats CS2 Faceit Stats
ID hhamdfhacjkmpefgmpehalapnoopakmk
Oficjalny URL https://chromewebstore.google.com/detail/cs2-faceit-stats/hhamdfhacjkmpefgmpehalapnoopakmk
Opis Browser extension displays a users stats on FACEIT on their Steam profile.
Rozmiar pliku 405 KB
Liczba instalacji 113
Aktualna Wersja 3.2
Ostatnia Aktualizacja 2024-02-22
Data Publikacji 2023-11-28
Ocena 3.00/5 Łącznie 2 Oceny
Deweloper nol1cx
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://vk.com/gpgesports
Adres URL Strony Pomocy https://vk.com/gpgesports
Obsługiwane Języki 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": [
                ""
            ]
        }
    ]
}