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.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot
screenshot

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 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
Eメール [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"
        }
    ]
}