CS2 Case Opening Stats

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

Was ist CS2 Case Opening Stats?

CS2 Case Opening Stats ist eine Chrome-Erweiterung, die von paul.muenchhausen entwickelt wurde, und ihr Hauptmerkmal ist "A small extension to see how much money you have 'invested' in CS cases.".

Erweiterungsscreenshots

screenshot

CS2 Case Opening Stats-Erweiterungs-CRX-Datei herunterladen

Laden Sie CS2 Case Opening Stats-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name CS2 Case Opening Stats CS2 Case Opening Stats
ID clcgadagmheefcopmehicmjhimgbifph
Offizielle URL https://chromewebstore.google.com/detail/cs2-case-opening-stats/clcgadagmheefcopmehicmjhimgbifph
Beschreibung A small extension to see how much money you have 'invested' in CS cases.
Dateigröße 774 KB
Installationsanzahl 45
Aktuelle Version 1.2.0
Letztes Update 2023-11-26
Veröffentlichungsdatum 2023-11-07
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler paul.muenchhausen
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://privacy.patimue.de
Unterstützte Sprachen 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"
    }
}