Velo Filesystem

Chrome extension for managing the virtual file system in Velo by Wix

Что такое Velo Filesystem?

Velo Filesystem - это расширение Chrome, разработанное Alexander Zaytsev, и его основная функция - "Chrome extension for managing the virtual file system in Velo by Wix".

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

screenshot

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

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

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

                        Downloading your Velo editor code files to file system on your computer. 
Supported Wix / Wix Studio / Wix Blocks / Editor X editors.

https://shoonia.site/velo-filesystem-chrome-extension/                    

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

Название Velo Filesystem Velo Filesystem
ID gjmdfafehkeddjhielckakekclainbpn
Официальный URL https://chromewebstore.google.com/detail/velo-filesystem/gjmdfafehkeddjhielckakekclainbpn
Описание Chrome extension for managing the virtual file system in Velo by Wix
Размер файла 18.08 KB
Количество установок 114
Текущая Версия 0.7.0
Последнее Обновление 2024-01-14
Дата публикации 2021-09-29
Рейтинг 5.00/5 Всего 1 оценок
Разработчик Alexander Zaytsev
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/shoonia/velo-filesystem
URL страницы помощи https://github.com/shoonia/velo-filesystem/discussions
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Velo Filesystem",
    "version": "0.7.0",
    "description": "Chrome extension for managing the virtual file system in Velo by Wix",
    "author": {
        "email": "[email protected]"
    },
    "homepage_url": "https:\/\/github.com\/shoonia\/velo-filesystem",
    "icons": {
        "16": "icons\/velo.png",
        "48": "icons\/velo.png"
    },
    "host_permissions": [
        "https:\/\/editor.wix.com\/studio\/*",
        "https:\/\/editor.wix.com\/html\/editor\/web\/*",
        "https:\/\/blocks.wix.com\/edit\/blocks\/*",
        "https:\/\/create.editorx.com\/edit\/*"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icons\/velo.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/editor.wix.com\/studio\/*",
                "https:\/\/editor.wix.com\/html\/editor\/web\/*",
                "https:\/\/blocks.wix.com\/edit\/blocks\/*",
                "https:\/\/create.editorx.com\/edit\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "module.js"
            ],
            "matches": [
                "https:\/\/editor.wix.com\/*",
                "https:\/\/blocks.wix.com\/*",
                "https:\/\/create.editorx.com\/*"
            ]
        }
    ]
}