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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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"
        }
    ]
}