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
官方網址 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\/*"
            ]
        }
    ]
}