CS2 Case Opening Stats

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

Wat is CS2 Case Opening Stats?

CS2 Case Opening Stats is een Chrome-extensie ontwikkeld door paul.muenchhausen, en de belangrijkste functie is "A small extension to see how much money you have 'invested' in CS cases.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie CS2 Case Opening Stats

Download CS2 Case Opening Stats-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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!                    

Basisinformatie over de Extensie

Naam CS2 Case Opening Stats CS2 Case Opening Stats
ID clcgadagmheefcopmehicmjhimgbifph
Officiële URL https://chromewebstore.google.com/detail/cs2-case-opening-stats/clcgadagmheefcopmehicmjhimgbifph
Beschrijving A small extension to see how much money you have 'invested' in CS cases.
Bestandsgrootte 774 KB
Aantal Installaties 45
Huidige Versie 1.2.0
Laatst Bijgewerkt 2023-11-26
Publicatiedatum 2023-11-07
Beoordeling 5.00/5 Totaal 3 Beoordelingen
Ontwikkelaar paul.muenchhausen
E-mail [email protected]
Betalingswijze free
URL van de Privacybeleid Pagina https://privacy.patimue.de
Ondersteunde Talen 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"
    }
}