Velo Filesystem

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

什么是Velo Filesystem?

Velo Filesystem是由Alexander Zaytsev开发的Chrome扩展程序,该扩展的主要功能是“Chrome extension for managing the virtual file system in Velo by Wix”。

扩展截图

screenshot

下载Velo Filesystem扩展crx文件

下载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\/*"
            ]
        }
    ]
}