CS:GO Inventory Pricer

A simple utility to price individual items in a users CS:GO inventory.

CS:GO Inventory Pricer란 무엇입니까?

CS:GO Inventory Pricer은(는) ECB2에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A simple utility to price individual items in a users CS:GO inventory."입니다.

CS:GO Inventory Pricer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                                            

확장 프로그램 기본 정보

이름 CS:GO Inventory Pricer CS:GO Inventory Pricer
ID hjogfgneocbckolmlahoahedogdajonh
공식 URL https://chrome.google.com/webstore/detail/csgo-inventory-pricer/hjogfgneocbckolmlahoahedogdajonh
설명 A simple utility to price individual items in a users CS:GO inventory.
파일 크기 88.46 KB
설치 횟수 126
현재 버전 0.6.5
최근 업데이트 2015-08-28
출시 날짜 2015-08-28
평점 3.00/5 총 2 개의 평점
개발자 ECB2
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CS:GO Inventory Pricer",
    "description": "A simple utility to price individual items in a users CS:GO inventory.",
    "version": "0.6.5",
    "icons": {
        "128": "logo.png"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "storage"
    ],
    "background": {
        "scripts": [
            "app\/bg\/background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": "icons\/128.png"
    },
    "options_page": "settings\/options.html",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/steamcommunity.com\/*\/*\/inventory\/",
                "*:\/\/steamcommunity.com\/*\/*\/inventory"
            ],
            "js": [
                "libs\/jquery-2.1.1.min.js",
                "app\/update_checker.js",
                "app\/CLogger.js",
                "app\/CItem.js",
                "app\/CInventory.js",
                "app\/CData.js",
                "app\/main.js"
            ],
            "css": [
                "app\/css\/update.css",
                "app\/css\/item.css",
                "app\/css\/menu.css"
            ]
        },
        {
            "matches": [
                "*:\/\/steamcommunity.com\/*\/*\/tradeoffers\/",
                "*:\/\/steamcommunity.com\/*\/*\/tradeoffers\/?history=*",
                "*:\/\/steamcommunity.com\/*\/*\/tradeoffers"
            ],
            "js": [
                "libs\/jquery-2.1.1.min.js",
                "app\/update_checker.js",
                "app\/CLogger.js",
                "app\/CItem.js",
                "app\/CInventory.js",
                "app\/CData.js",
                "app\/CPartner.js",
                "app\/offers.js"
            ],
            "css": [
                "app\/css\/update.css",
                "app\/css\/item.css",
                "app\/css\/menu.css"
            ]
        },
        {
            "matches": [
                "*:\/\/steamcommunity.com\/market\/listings\/730\/*"
            ],
            "js": [
                "libs\/jquery-2.1.1.min.js",
                "app\/update_checker.js",
                "app\/market.js"
            ],
            "css": [
                "app\/css\/update.css"
            ]
        }
    ]
}