BrickLink Helper Chrome Extension

Add some new features on top of the existing site.

Что такое BrickLink Helper Chrome Extension?

BrickLink Helper Chrome Extension - это расширение Chrome, разработанное pricco, и его основная функция - "Add some new features on top of the existing site.".

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

screenshot
screenshot

Скачать файл CRX расширения BrickLink Helper Chrome Extension

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

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

                        2020-11-29
* Bulk duplicate for Wanted Lists

2020-02-25
* Bulk delete for Wanted Lists
* Merge wanted lists
* Force page size for Wanted List's detail page                    

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

Название BrickLink Helper Chrome Extension BrickLink Helper Chrome Extension
ID jhjcnccenajddejmnjjopbaakomhakco
Официальный URL https://chromewebstore.google.com/detail/bricklink-helper-chrome-e/jhjcnccenajddejmnjjopbaakomhakco
Описание Add some new features on top of the existing site.
Размер файла 1012 KB
Количество установок 222
Текущая Версия 0.0.2
Последнее Обновление 2020-11-29
Дата публикации 2020-04-25
Рейтинг 5.00/5 Всего 2 оценок
Разработчик pricco
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/pricco/bricklink-helper-chrome-extension
URL страницы помощи https://github.com/pricco/bricklink-helper-chrome-extension/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "BrickLink Helper Chrome Extension",
    "description": "Add some new features on top of the existing site.",
    "version": "0.0.2",
    "icons": {
        "16": "icon16x.png",
        "48": "icon48x.png",
        "128": "icon128x.png"
    },
    "options_page": "index.html",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.bricklink.com\/*"
            ],
            "css": [
                "static\/css\/main.css"
            ],
            "js": [
                "static\/js\/main.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}