Tarkov Price Checker

Add prices of items to the wiki entries

Что такое Tarkov Price Checker?

Tarkov Price Checker - это расширение Chrome, разработанное eft.browser.extension, и его основная функция - "Add prices of items to the wiki entries".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Tarkov Price Checker

Скачайте файлы расширений Tarkov Price Checker в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        When browsing the Escape from Tarkov wiki you might find yourself switching back and fourth between that and the flea market, with this extension you can have the price rendered on the wiki page.                    

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

Название Tarkov Price Checker Tarkov Price Checker
ID biodbhjiicmpkhkiodicnomhjlimigmp
Официальный URL https://chrome.google.com/webstore/detail/tarkov-price-checker/biodbhjiicmpkhkiodicnomhjlimigmp
Описание Add prices of items to the wiki entries
Размер файла 9.24 KB
Количество установок 119
Текущая Версия 0.0.2
Последнее Обновление 2021-03-30
Дата публикации 2020-10-06
Рейтинг 5.00/5 Всего 1 оценок
Разработчик eft.browser.extension
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/drizko/eft-browser-extension
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tarkov Price Checker",
    "description": "Add prices of items to the wiki entries",
    "version": "0.0.2",
    "manifest_version": 2,
    "icons": {
        "64": "assets\/ruble-64.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/escapefromtarkov.fandom.com\/*"
            ],
            "js": [
                "main.js"
            ]
        }
    ],
    "permissions": [
        "*:\/\/tarkov-price-checker.glitch.me\/get-info*",
        "webRequest"
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "42.0"
        }
    }
}