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 - это расширение Chrome, разработанное ECB2, и его основная функция - "A simple utility to price individual items in a users CS:GO inventory.".

Скачать файл CRX расширения CS:GO Inventory Pricer

Скачайте файлы расширений CS:GO Inventory Pricer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                                            

Основная информация о расширении

Название 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"
            ]
        }
    ]
}