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
Eメール [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\/*"
            ]
        }
    ]
}