Velo Filesystem
Chrome extension for managing the virtual file system in Velo by Wix
What is Velo Filesystem?
Velo Filesystem is a Chrome extension developed by Alexander Zaytsev, and its main feature is "Chrome extension for managing the virtual file system in Velo by Wix".
Extension Screenshots
Download Velo Filesystem Extension CRX File
Download Velo Filesystem extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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/
Extension Basic Information
Name | Velo Filesystem |
ID | gjmdfafehkeddjhielckakekclainbpn |
Official URL | https://chromewebstore.google.com/detail/velo-filesystem/gjmdfafehkeddjhielckakekclainbpn |
Description | Chrome extension for managing the virtual file system in Velo by Wix |
File Size | 18.08 KB |
Installation Count | 114 |
Current Version | 0.7.0 |
Last Updated | 2024-01-14 |
Publish Date | 2021-09-29 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Alexander Zaytsev |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/shoonia/velo-filesystem |
Help Page URL | https://github.com/shoonia/velo-filesystem/discussions |
Supported Languages | 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\/*" ] } ] } |