Steam Order Scanner
Helps keep your market buy orders profitable. Also adds some useful features.
Steam Order Scanner क्या है?
Steam Order Scanner SORS द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Helps keep your market buy orders profitable. Also adds some useful features."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Steam Order Scanner एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Steam Order Scanner (SORS) is a Google Chrome browser extension which main function is to keep your Steam Community Market buy orders profitable. The extension also adds some useful functionality to the Market pages.
एक्सटेंशन की मूल जानकारी
नाम | Steam Order Scanner |
ID | poaddkofidcihbbodleahclcjoghdilh |
आधिकारिक URL | https://chromewebstore.google.com/detail/steam-order-scanner/poaddkofidcihbbodleahclcjoghdilh |
विवरण | Helps keep your market buy orders profitable. Also adds some useful features. |
फ़ाइल का आकार | 41.2 KB |
स्थापना संख्या | 431 |
वर्तमान संस्करण | 1.7.1 |
अंतिम अपडेट | 2021-02-16 |
प्रकाशन तिथि | 2021-01-18 |
रेटिंग | 5.00/5 कुल 7 रेटिंग्स |
डेवलपर | SORS |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/auwaho/steam-order-scanner |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Steam Order Scanner", "short_name": "SORS", "description": "Helps keep your market buy orders profitable. Also adds some useful features.", "version": "1.7.1", "permissions": [ "storage", "activeTab", "tabs", "*:\/\/steamcommunity.com\/*", "*:\/\/localhost\/*" ], "browser_action": { "default_icon": "ext\/icon.png", "default_popup": "ext\/popup\/popup.html" }, "icons": { "48": "ext\/icon.png" }, "background": { "scripts": [ "ext\/background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/steamcommunity.com\/market\/", "*:\/\/steamcommunity.com\/market\/#", "*:\/\/steamcommunity.com\/market" ], "js": [ "site\/market.js" ], "run_at": "document_end" }, { "matches": [ "*:\/\/steamcommunity.com\/market\/listings\/*\/*" ], "js": [ "site\/listings.js" ], "run_at": "document_end" }, { "matches": [ "*:\/\/steamcommunity.com\/*" ], "js": [ "site\/cancel.js" ], "run_at": "document_end" } ] } |