CS2 Case Opening Stats
A small extension to see how much money you have 'invested' in CS cases.
¿Qué es CS2 Case Opening Stats?
CS2 Case Opening Stats es una extensión de Chrome desarrollada por paul.muenchhausen, y su función principal es "A small extension to see how much money you have 'invested' in CS cases.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión CS2 Case Opening Stats
Descarga archivos de extensión CS2 Case Opening Stats en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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!
Información Básica de la Extensión
Nombre | CS2 Case Opening Stats |
ID | clcgadagmheefcopmehicmjhimgbifph |
URL Oficial | https://chromewebstore.google.com/detail/cs2-case-opening-stats/clcgadagmheefcopmehicmjhimgbifph |
Descripción | A small extension to see how much money you have 'invested' in CS cases. |
Tamaño del Archivo | 774 KB |
Cantidad de Instalaciones | 45 |
Versión Actual | 1.2.0 |
Última Actualización | 2023-11-26 |
Fecha de Publicación | 2023-11-07 |
Calificación | 5.00/5 Total de 3 Calificaciones |
Desarrollador | paul.muenchhausen |
Correo electrónico | [email protected] |
Tipo de Pago | free |
URL de la Página de Política de Privacidad | https://privacy.patimue.de |
Idiomas Soportados | 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" } } |