Steam Order Scanner
Helps keep your market buy orders profitable. Also adds some useful features.
什麼是Steam Order Scanner?
Steam Order Scanner是由SORS開發的Chrome擴展程式,該擴展的主要功能是“Helps keep your market buy orders profitable. Also adds some useful features.”。
擴展截圖
下載Steam Order Scanner擴展crx文件
下載Steam Order Scanner擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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" } ] } |