CS2 Case Opening Stats

A small extension to see how much money you have 'invested' in CS cases.

Что такое CS2 Case Opening Stats?

CS2 Case Opening Stats - это расширение Chrome, разработанное paul.muenchhausen, и его основная функция - "A small extension to see how much money you have 'invested' in CS cases.".

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

screenshot

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

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

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

                        An extension to analyse your CS case history. In order for it to work, you have to have Steam in english in your browser.
Then, go through your inventory > Three dots to inventory history > click the load history button!                    

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

Название CS2 Case Opening Stats CS2 Case Opening Stats
ID clcgadagmheefcopmehicmjhimgbifph
Официальный URL https://chromewebstore.google.com/detail/cs2-case-opening-stats/clcgadagmheefcopmehicmjhimgbifph
Описание A small extension to see how much money you have 'invested' in CS cases.
Размер файла 774 KB
Количество установок 45
Текущая Версия 1.2.0
Последнее Обновление 2023-11-26
Дата публикации 2023-11-07
Рейтинг 5.00/5 Всего 3 оценок
Разработчик paul.muenchhausen
Электронная почта [email protected]
Тип оплаты free
URL страницы политики конфиденциальности https://privacy.patimue.de
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "CS2 Case Opening Stats",
    "version": "1.2.0",
    "description": "A small extension to see how much money you have 'invested' in CS cases.",
    "icons": {
        "16": "assets\/icon16.png",
        "48": "assets\/icon48.png",
        "64": "assets\/icon64.png",
        "128": "assets\/icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/steamcommunity.com\/*"
            ],
            "js": [
                "caseScript.js"
            ],
            "css": [
                ".\/styles\/caseAnalytics.css"
            ]
        },
        {
            "matches": [
                "https:\/\/cs.patimue.de\/stats"
            ],
            "js": [
                ".\/statsPage.js"
            ]
        },
        {
            "matches": [
                "http:\/\/localhost:3000\/stats"
            ],
            "js": [
                ".\/statsPage.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "inject.js",
                "html\/casebox.html",
                "styles\/caseAnalytics.css"
            ],
            "matches": [
                "https:\/\/steamcommunity.com\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html"
    }
}