CS2 Case Opening Stats
A small extension to see how much money you have 'invested' in CS cases.
O que é CS2 Case Opening Stats?
CS2 Case Opening Stats é uma extensão do Chrome desenvolvida por paul.muenchhausen, e sua principal característica é "A small extension to see how much money you have 'invested' in CS cases.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão CS2 Case Opening Stats
Baixe arquivos de extensão CS2 Case Opening Stats no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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!
Informações Básicas da Extensão
Nome | CS2 Case Opening Stats |
ID | clcgadagmheefcopmehicmjhimgbifph |
URL Oficial | https://chromewebstore.google.com/detail/cs2-case-opening-stats/clcgadagmheefcopmehicmjhimgbifph |
Descrição | A small extension to see how much money you have 'invested' in CS cases. |
Tamanho do Arquivo | 774 KB |
Contagem de Instalações | 45 |
Versão Atual | 1.2.0 |
Última Atualização | 2023-11-26 |
Data de Publicação | 2023-11-07 |
Classificação | 5.00/5 Total de 3 Avaliações |
Desenvolvedor | paul.muenchhausen |
[email protected] | |
Tipo de Pagamento | free |
URL da Página de Política de Privacidade | https://privacy.patimue.de |
Idiomas Suportados | 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" } } |