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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
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" } } |