Velo Filesystem
Chrome extension for managing the virtual file system in Velo by Wix
Vad är Velo Filesystem?
Velo Filesystem är en Chrome-tillägg utvecklad av Alexander Zaytsev, och dess huvudfunktion är "Chrome extension for managing the virtual file system in Velo by Wix".
Tilläggsskärmbilder
Ladda ner Velo Filesystem-förlängningens CRX-fil
Ladda ner Velo Filesystem-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
Namn | Velo Filesystem |
ID | gjmdfafehkeddjhielckakekclainbpn |
Officiell webbadress | https://chromewebstore.google.com/detail/velo-filesystem/gjmdfafehkeddjhielckakekclainbpn |
Beskrivning | Chrome extension for managing the virtual file system in Velo by Wix |
Filstorlek | 18.08 KB |
Antal Installationer | 114 |
Aktuell Version | 0.7.0 |
Senast Uppdaterad | 2024-01-14 |
Publiceringsdatum | 2021-09-29 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | Alexander Zaytsev |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/shoonia/velo-filesystem |
Hjälpsida URL | https://github.com/shoonia/velo-filesystem/discussions |
Stödda Språk | 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\/*" ] } ] } |