Library - UI Components for Wix

Build websites faster in Wix with UI components library.

Что такое Library - UI Components for Wix?

Library - UI Components for Wix - это расширение Chrome, разработанное https://certifiedcode.us, и его основная функция - "Build websites faster in Wix with UI components library.".

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

screenshot

Скачать файл CRX расширения Library - UI Components for Wix

Скачайте файлы расширений Library - UI Components for Wix в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        This extension allows you to copy components from Library to Wix Website Editor.                    

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

Название Library - UI Components for Wix Library - UI Components for Wix
ID bidnnalgdambofjfpcdncpjfmamhelmi
Официальный URL https://chromewebstore.google.com/detail/library-ui-components-for/bidnnalgdambofjfpcdncpjfmamhelmi
Описание Build websites faster in Wix with UI components library.
Размер файла 153 KB
Количество установок 570
Текущая Версия 3.0.6
Последнее Обновление 2023-10-16
Дата публикации 2022-03-31
Рейтинг 1.00/5 Всего 1 оценок
Разработчик https://certifiedcode.us
Электронная почта [email protected]
Тип оплаты in_app
Официальный сайт расширения https://www.certifiedcode.us/product/library
URL страницы помощи https://www.certifiedcode.us/support/contact
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Library - UI Components for Wix",
    "description": "Build websites faster in Wix with UI components library.",
    "version": "3.0.6",
    "manifest_version": 3,
    "action": {
        "default_icon": {
            "64": "assets\/default_icon_64.png",
            "24": "assets\/default_icon_24.png"
        }
    },
    "icons": {
        "64": "assets\/default_icon_64.png",
        "24": "assets\/default_icon_24.png"
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/editor.wix.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "js\/wix.js",
                "js\/editor.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "\/*"
            ],
            "matches": [
                "https:\/\/editor.wix.com\/*"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/editor.wix.com\/*"
    ]
}