Velo Filesystem

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

Cos'è Velo Filesystem?

Velo Filesystem è un'estensione di Chrome sviluppata da Alexander Zaytsev, e la sua funzione principale è "Chrome extension for managing the virtual file system in Velo by Wix".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Velo Filesystem

Scarica i file di estensione Velo Filesystem in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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/                    

Informazioni di Base sull'Estensione

Nome Velo Filesystem Velo Filesystem
ID gjmdfafehkeddjhielckakekclainbpn
URL Ufficiale https://chromewebstore.google.com/detail/velo-filesystem/gjmdfafehkeddjhielckakekclainbpn
Descrizione Chrome extension for managing the virtual file system in Velo by Wix
Dimensione del File 18.08 KB
Conteggio Installazioni 114
Versione Corrente 0.7.0
Ultimo Aggiornamento 2024-01-14
Data di Pubblicazione 2021-09-29
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Alexander Zaytsev
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/shoonia/velo-filesystem
URL della Pagina di Aiuto https://github.com/shoonia/velo-filesystem/discussions
Lingue Supportate 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\/*"
            ]
        }
    ]
}