Steam Order Scanner
Helps keep your market buy orders profitable. Also adds some useful features.
What is Steam Order Scanner?
Steam Order Scanner is a Chrome extension developed by SORS, and its main feature is "Helps keep your market buy orders profitable. Also adds some useful features.".
Extension Screenshots
Download Steam Order Scanner Extension CRX File
Download Steam Order Scanner extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Steam Order Scanner |
ID | poaddkofidcihbbodleahclcjoghdilh |
Official URL | https://chromewebstore.google.com/detail/steam-order-scanner/poaddkofidcihbbodleahclcjoghdilh |
Description | Helps keep your market buy orders profitable. Also adds some useful features. |
File Size | 41.2 KB |
Installation Count | 431 |
Current Version | 1.7.1 |
Last Updated | 2021-02-16 |
Publish Date | 2021-01-18 |
Rating | 5.00/5 Total 7 Ratings |
Developer | SORS |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/auwaho/steam-order-scanner |
Supported Languages | 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" } ] } |