Velo Filesystem
Chrome extension for managing the virtual file system in Velo by Wix
¿Qué es Velo Filesystem?
Velo Filesystem es una extensión de Chrome desarrollada por Alexander Zaytsev, y su función principal es "Chrome extension for managing the virtual file system in Velo by Wix".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Velo Filesystem
Descarga archivos de extensión Velo Filesystem en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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/
Información Básica de la Extensión
Nombre | Velo Filesystem |
ID | gjmdfafehkeddjhielckakekclainbpn |
URL Oficial | https://chromewebstore.google.com/detail/velo-filesystem/gjmdfafehkeddjhielckakekclainbpn |
Descripción | Chrome extension for managing the virtual file system in Velo by Wix |
Tamaño del Archivo | 18.08 KB |
Cantidad de Instalaciones | 114 |
Versión Actual | 0.7.0 |
Última Actualización | 2024-01-14 |
Fecha de Publicación | 2021-09-29 |
Calificación | 5.00/5 Total de 1 Calificaciones |
Desarrollador | Alexander Zaytsev |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/shoonia/velo-filesystem |
URL de la Página de Ayuda | https://github.com/shoonia/velo-filesystem/discussions |
Idiomas Soportados | 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\/*" ] } ] } |