Steam Market Item Price Tracker
Steam Market Item Price Tracker allows you to track Steam Community Market item buy/sell orders.
Steam Market Item Price Tracker란 무엇입니까?
Steam Market Item Price Tracker은(는) steamextensions에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Steam Market Item Price Tracker allows you to track Steam Community Market item buy/sell orders."입니다.
확장 프로그램 스크린샷
Steam Market Item Price Tracker 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Features: * Shows you desktop notification when there is buy/sell prices changed by users preferences * Dark/Light mode (for extension pages by browser settings) Compatibility: * This extension has been tested to work with Steam Market History Helper, Steam Inventory Helper, Enhanced Steam and CSGOFloat Market Checker
확장 프로그램 기본 정보
이름 | Steam Market Item Price Tracker |
ID | koclieckfnkkiiaopankjmiigmfppbbo |
공식 URL | https://chromewebstore.google.com/detail/steam-market-item-price-t/koclieckfnkkiiaopankjmiigmfppbbo |
설명 | Steam Market Item Price Tracker allows you to track Steam Community Market item buy/sell orders. |
파일 크기 | 920 KB |
설치 횟수 | 822 |
현재 버전 | 1.1.1 |
최근 업데이트 | 2023-08-30 |
출시 날짜 | 2021-11-20 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | steamextensions |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/demiryasinoruc/steam-market-item-price-tracker |
도움말 페이지 URL | https://github.com/demiryasinoruc/steam-market-item-price-tracker |
지원되는 언어 | de,en,fr,nl,no,tr,da,it,hu,pl,ro,fi,cs,el,bg,ru,uk,th,ja,ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_extensionName__", "description": "__MSG_extensionDescription__", "default_locale": "en", "background": { "service_worker": ".\/background.js" }, "action": { "default_popup": ".\/popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/steamcommunity.com\/market\/listings\/*" ], "js": [ ".\/content_scripts\/listings.js" ], "css": [ ".\/assets\/styles\/listings.css" ], "run_at": "document_end" }, { "all_frames": false, "js": [ ".\/content_scripts\/search.js" ], "css": [ ".\/assets\/styles\/search.css" ], "matches": [ "*:\/\/steamcommunity.com\/market\/search*" ], "run_at": "document_end" }, { "all_frames": false, "js": [ ".\/content_scripts\/market.js" ], "matches": [ "*:\/\/steamcommunity.com\/market?smipt=*" ], "run_at": "document_end" }, { "matches": [ "*:\/\/*.steamcommunity.com\/id\/*\/inventory*", "*:\/\/*.steamcommunity.com\/profiles\/*\/inventory*" ], "js": [ ".\/content_scripts\/inventory.js" ], "css": [ ".\/assets\/styles\/inventory.css" ], "run_at": "document_end" } ], "icons": { "16": "assets\/icons\/icon_16.png", "32": "assets\/icons\/icon_32.png", "64": "assets\/icons\/icon_64.png", "128": "assets\/icons\/icon_128.png" }, "options_page": ".\/options.html", "permissions": [ "notifications", "storage", "tabs", "unlimitedStorage" ], "web_accessible_resources": [ { "matches": [ "*:\/\/steamcommunity.com\/*" ], "resources": [ "*\/*" ] } ], "version": "1.1.1" } |