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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Steam Market Item Price Tracker allows you to track Steam Community Market item buy/sell orders."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Steam Market Item Price Tracker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" } |