CS2 Case Opening Stats
A small extension to see how much money you have 'invested' in CS cases.
Qu'est-ce que CS2 Case Opening Stats ?
CS2 Case Opening Stats est une extension Chrome développée par paul.muenchhausen, et sa fonction principale est "A small extension to see how much money you have 'invested' in CS cases.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension CS2 Case Opening Stats
Téléchargez les fichiers d'extension CS2 Case Opening Stats au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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!
Informations de Base sur l'Extension
Nom | CS2 Case Opening Stats |
ID | clcgadagmheefcopmehicmjhimgbifph |
URL Officiel | https://chromewebstore.google.com/detail/cs2-case-opening-stats/clcgadagmheefcopmehicmjhimgbifph |
Description | A small extension to see how much money you have 'invested' in CS cases. |
Taille du Fichier | 774 KB |
Nombre d'Installations | 45 |
Version Actuelle | 1.2.0 |
Dernière Mise à Jour | 2023-11-26 |
Date de Publication | 2023-11-07 |
Évaluation | 5.00/5 Total 3 Évaluations |
Développeur | paul.muenchhausen |
[email protected] | |
Type de Paiement | free |
URL de la Page de Politique de Confidentialité | https://privacy.patimue.de |
Langues Prises en Charge | 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" } } |