CC/BC SKU Widget

Instantly copy SKUs and check stock on the Competitive Cyclist and Backcountry websites

Что такое CC/BC SKU Widget?

CC/BC SKU Widget - это расширение Chrome, разработанное Tommy Liao, и его основная функция - "Instantly copy SKUs and check stock on the Competitive Cyclist and Backcountry websites".

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

screenshot
screenshot
screenshot

Скачать файл CRX расширения CC/BC SKU Widget

Скачайте файлы расширений CC/BC SKU Widget в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        Adds dropdown on the PLP to choose variants, which displays current stock status, price, and variant name. Click on the variant to copy the SKU to the clipboard. On the PDP, choose a variant and click "Copy SKU" to copy the SKU to the clipboard. Both the PLP and PDP can go straight to the WMS page for the item to check ETAs, stock level, and pricing.                    

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

Название CC/BC SKU Widget CC/BC SKU Widget
ID oclphakakbdnigniddcimhmcikgedhhk
Официальный URL https://chromewebstore.google.com/detail/ccbc-sku-widget/oclphakakbdnigniddcimhmcikgedhhk
Описание Instantly copy SKUs and check stock on the Competitive Cyclist and Backcountry websites
Размер файла 11.83 KB
Количество установок 96
Текущая Версия 1.2.98
Последнее Обновление 2024-02-15
Дата публикации 2020-08-29
Рейтинг 5.00/5 Всего 2 оценок
Разработчик Tommy Liao
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/dudemanppl/CCBCSKUWidget
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CC\/BC SKU Widget",
    "version": "1.2.98",
    "description": "Instantly copy SKUs and check stock on the Competitive Cyclist and Backcountry websites",
    "author": "Tommy Liao",
    "manifest_version": 3,
    "icons": {
        "128": "images\/cc.png"
    },
    "action": {
        "browser_style": true,
        "default_icon": "images\/cc.png"
    },
    "host_permissions": [
        "https:\/\/www.competitivecyclist.com\/*",
        "https:\/\/www.backcountry.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.competitivecyclist.com\/*",
                "https:\/\/www.backcountry.com\/*"
            ],
            "css": [
                "index.min.css"
            ],
            "js": [
                "index.min.js"
            ]
        }
    ]
}