Velo Filesystem
Chrome extension for managing the virtual file system in Velo by Wix
Co to jest Velo Filesystem?
Velo Filesystem to rozszerzenie Chrome opracowane przez Alexander Zaytsev, a jego główną funkcją jest „Chrome extension for managing the virtual file system in Velo by Wix”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Velo Filesystem
Pobierz pliki rozszerzeń Velo Filesystem w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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/
Podstawowe informacje o rozszerzeniu
Nazwa | Velo Filesystem |
ID | gjmdfafehkeddjhielckakekclainbpn |
Oficjalny URL | https://chromewebstore.google.com/detail/velo-filesystem/gjmdfafehkeddjhielckakekclainbpn |
Opis | Chrome extension for managing the virtual file system in Velo by Wix |
Rozmiar pliku | 18.08 KB |
Liczba instalacji | 114 |
Aktualna Wersja | 0.7.0 |
Ostatnia Aktualizacja | 2024-01-14 |
Data Publikacji | 2021-09-29 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | Alexander Zaytsev |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/shoonia/velo-filesystem |
Adres URL Strony Pomocy | https://github.com/shoonia/velo-filesystem/discussions |
Obsługiwane Języki | 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\/*" ] } ] } |