CSFloat price to Buff price

Check price of any CSFloat offers on Buff163.

Что такое CSFloat price to Buff price?

CSFloat price to Buff price - это расширение Chrome, разработанное thebycop, и его основная функция - "Check price of any CSFloat offers on Buff163.".

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

screenshot
screenshot

Скачать файл CRX расширения CSFloat price to Buff price

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

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

                        This extension will allow you to compare the price of any CSFloat offer with the Buff163 price.

This extension is open-source and available on github for selfhosting: 
https://github.com/bycop/csfloat-buff-checker

Don't hesitate to contribute to the project, leave a star or follow on github                    

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

Название CSFloat price to Buff price CSFloat price to Buff price
ID lfgejbipklggolmlfkmopkbjjakiljpg
Официальный URL https://chromewebstore.google.com/detail/csfloat-price-to-buff-pri/lfgejbipklggolmlfkmopkbjjakiljpg
Описание Check price of any CSFloat offers on Buff163.
Размер файла 510 KB
Количество установок 828
Текущая Версия 1.5
Последнее Обновление 2023-09-30
Дата публикации 2023-08-10
Рейтинг 5.00/5 Всего 2 оценок
Разработчик thebycop
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/bycop
URL страницы помощи https://github.com/bycop/csfloat-buff-checker
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "CSFloat price to Buff price",
    "version": "1.5",
    "description": "Check price of any CSFloat offers on Buff163.",
    "icons": {
        "16": "icons\/logo_16.png",
        "32": "icons\/logo_32.png",
        "48": "icons\/logo_48.png",
        "128": "icons\/logo_128.png"
    },
    "action": {
        "default_title": "Like this project ? Click me"
    },
    "host_permissions": [
        "https:\/\/csfloat.com\/*",
        "https:\/\/api.steaminventoryhelper.com\/*",
        "https:\/\/github.com\/bycop"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/csfloat.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "externally_connectable": {
        "matches": [
            "https:\/\/api.steaminventoryhelper.com\/*",
            "https:\/\/github.com\/bycop"
        ]
    },
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    }
}