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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย steamextensions และคุณลักษณะหลักของมันคือ "Steam Market Item Price Tracker allows you to track Steam Community Market item buy/sell orders."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Steam Market Item Price Tracker
ดาวน์โหลดไฟล์ส่วนขยาย Steam Market Item Price Tracker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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" } |