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是由paul.muenchhausen开发的Chrome扩展程序,该扩展的主要功能是“A small extension to see how much money you have 'invested' in CS cases.”。

扩展截图

screenshot

下载CS2 Case Opening Stats扩展crx文件

下载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"
    }
}