Velo Filesystem
Chrome extension for managing the virtual file system in Velo by Wix
Hvad er Velo Filesystem?
Velo Filesystem er en Chrome-udvidelse udviklet af Alexander Zaytsev, og dens hovedfunktion er "Chrome extension for managing the virtual file system in Velo by Wix".
Udvidelsesskærmbilleder
Download Velo Filesystem-udvidelses-CRX-fil
Download Velo Filesystem-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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/
Grundlæggende oplysninger om udvidelsen
Navn | Velo Filesystem |
ID | gjmdfafehkeddjhielckakekclainbpn |
Officiel URL | https://chromewebstore.google.com/detail/velo-filesystem/gjmdfafehkeddjhielckakekclainbpn |
Beskrivelse | Chrome extension for managing the virtual file system in Velo by Wix |
Filstørrelse | 18.08 KB |
Antal Installationer | 114 |
Nuværende Version | 0.7.0 |
Senest Opdateret | 2024-01-14 |
Udgivelsesdato | 2021-09-29 |
Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
Udvikler | Alexander Zaytsev |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/shoonia/velo-filesystem |
Hjælpeside-URL | https://github.com/shoonia/velo-filesystem/discussions |
Understøttede Sprog | 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\/*" ] } ] } |