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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A small extension to see how much money you have 'invested' in CS cases."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में CS2 Case Opening Stats एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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