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開發的Chrome擴展程式,該擴展的主要功能是“A small extension to see how much money you have 'invested' in CS cases.”。
擴展截圖
下載CS2 Case Opening Stats擴展crx文件
下載CS2 Case Opening Stats擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
ID | clcgadagmheefcopmehicmjhimgbifph |
官方網址 | 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" } } |