Steam Market History Helper
Steam Market History Helper helps you manage your market history on steamcommunity.com
Steam Market History Helperคืออะไร?
Steam Market History Helper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย steamextensions และคุณลักษณะหลักของมันคือ "Steam Market History Helper helps you manage your market history on steamcommunity.com"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Steam Market History Helper
ดาวน์โหลดไฟล์ส่วนขยาย Steam Market History Helper ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Features: * Allows you to save steam history and manage * Offline listings page (in extension) * Allows you to advanced filtering in the extension listing page (name, actor, transaction type, transaction date, etc.) * History chart in the extension listing page * Supports multi-currency * Supports multiple accounts (only fetches data of the logged in account) * Shows market item history in listings page (optional) * Shows you desktop notification when there is new transaction (optional) * Export data as JSON or CSV format * Dark/Light mode (for extension pages with browser settings) Compatibility: * This extension has been tested to work with Steam Inventory Helper, Enhanced Steam and CSGOFloat Market Checker
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Steam Market History Helper |
ID | bmbnngnjoagodaidjcmoiadioinjhhfb |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/steam-market-history-help/bmbnngnjoagodaidjcmoiadioinjhhfb |
คำอธิบาย | Steam Market History Helper helps you manage your market history on steamcommunity.com |
ขนาดไฟล์ | 1.26 MB |
จำนวนการติดตั้ง | 576 |
เวอร์ชันปัจจุบัน | 1.3.2 |
อัปเดตครั้งล่าสุด | 2023-08-30 |
วันที่เผยแพร่ | 2021-03-15 |
คะแนน | 5.00/5 รวมทั้งหมด 12 คะแนน |
ผู้พัฒนา | steamextensions |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://steamextensions.com |
URL หน้าช่วยเหลือ | https://steamcommunity.com/groups/steammarkethistoryhelper |
ภาษาที่รองรับ | 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": 2, "name": "__MSG_extensionName__", "description": "__MSG_extensionDescription__", "default_locale": "en", "background": { "scripts": [ ".\/background.js" ] }, "browser_action": { "default_icon": { "19": "assets\/icons\/icon_19.png", "38": "assets\/icons\/icon_38.png" }, "default_popup": ".\/popup.html" }, "content_scripts": [ { "all_frames": false, "js": [ ".\/content_scripts\/listings.js" ], "matches": [ "*:\/\/steamcommunity.com\/market\/listings\/*" ], "run_at": "document_end" }, { "all_frames": false, "js": [ ".\/content_scripts\/market.js" ], "matches": [ "*:\/\/steamcommunity.com\/market\/?smhh=*" ], "exclude": [ "*:\/\/steamcommunity.com\/market\/listings\/?smhh=true*" ], "run_at": "document_end" }, { "all_frames": false, "js": [ ".\/content_scripts\/index.js" ], "matches": [ "*:\/\/steamcommunity.com\/market\/?smhh=true&index=*&row=*" ], "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": [ "*:\/\/*.steamcommunity.com\/market\/listings\/*\/*", "*:\/\/*.steamcommunity.com\/market\/", "*:\/\/*.steamcommunity.com\/market\/myhistory\/render*", "cookies", "notifications", "storage" ], "web_accessible_resources": [ "data\/*.json", "assets\/*.js", "assets\/*.svg", "assets\/icons\/*" ], "version": "1.3.2" } |