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
Eメール [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"
    }
}