Shopify reSKU

Makes SKU required in Shopify Products

Что такое Shopify reSKU?

Shopify reSKU - это расширение Chrome, разработанное solvenium.com, и его основная функция - "Makes SKU required in Shopify Products".

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

screenshot

Скачать файл CRX расширения Shopify reSKU

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

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

                        Makes the SKU field required when editing or adding products in Shopify Admin.
A useful extension if SKU is vital for your inventory management.

_____________________________________________

Changelog

- 1.2.1 - fix - exclude /products/inventory
- 1.2.0 - added notification sounds
- 1.1.0 - added notifications                    

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

Название Shopify reSKU Shopify reSKU
ID fhkippjdgfnnajipfcapeofclonpojob
Официальный URL https://chromewebstore.google.com/detail/shopify-resku/fhkippjdgfnnajipfcapeofclonpojob
Описание Makes SKU required in Shopify Products
Размер файла 42.24 KB
Количество установок 40
Текущая Версия 1.2.1
Последнее Обновление 2016-09-10
Дата публикации 2016-09-10
Рейтинг 5.00/5 Всего 1 оценок
Разработчик solvenium.com
Электронная почта [email protected]
Тип оплаты in_app
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Shopify reSKU",
    "version": "1.2.1",
    "manifest_version": 2,
    "description": "Makes SKU required in Shopify Products",
    "homepage_url": "https:\/\/chrome.google.com\/webstore\/detail\/shopify-resku\/fhkippjdgfnnajipfcapeofclonpojob",
    "icons": {
        "16": "icons\/resku-icon-16.png",
        "48": "icons\/resku-icon-48.png",
        "128": "icons\/resku-icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "page_action": {
        "default_icon": "icons\/resku-icon-19.png",
        "default_title": "Shopify reSKU",
        "default_popup": "src\/page_action\/page_action.html"
    },
    "permissions": [
        "https:\/\/*.myshopify.com\/admin*",
        "notifications"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.myshopify.com\/admin*"
            ],
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ]
}