Velo Filesystem
Chrome extension for managing the virtual file system in Velo by Wix
Was ist Velo Filesystem?
Velo Filesystem ist eine Chrome-Erweiterung, die von Alexander Zaytsev entwickelt wurde, und ihr Hauptmerkmal ist "Chrome extension for managing the virtual file system in Velo by Wix".
Erweiterungsscreenshots
Velo Filesystem-Erweiterungs-CRX-Datei herunterladen
Laden Sie Velo Filesystem-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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/
Grundlegende Informationen zur Erweiterung
Name | Velo Filesystem |
ID | gjmdfafehkeddjhielckakekclainbpn |
Offizielle URL | https://chromewebstore.google.com/detail/velo-filesystem/gjmdfafehkeddjhielckakekclainbpn |
Beschreibung | Chrome extension for managing the virtual file system in Velo by Wix |
Dateigröße | 18.08 KB |
Installationsanzahl | 114 |
Aktuelle Version | 0.7.0 |
Letztes Update | 2024-01-14 |
Veröffentlichungsdatum | 2021-09-29 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | Alexander Zaytsev |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/shoonia/velo-filesystem |
Hilfeseite URL | https://github.com/shoonia/velo-filesystem/discussions |
Unterstützte Sprachen | 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\/*" ] } ] } |