Velo Filesystem
Chrome extension for managing the virtual file system in Velo by Wix
Wat is Velo Filesystem?
Velo Filesystem is een Chrome-extensie ontwikkeld door Alexander Zaytsev, en de belangrijkste functie is "Chrome extension for managing the virtual file system in Velo by Wix".
Extensie Screenshots
Download het CRX-bestand van de extensie Velo Filesystem
Download Velo Filesystem-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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/ Basisinformatie over de Extensie
| Naam | |
| ID | gjmdfafehkeddjhielckakekclainbpn |
| Officiële URL | https://chromewebstore.google.com/detail/velo-filesystem/gjmdfafehkeddjhielckakekclainbpn |
| Beschrijving | Chrome extension for managing the virtual file system in Velo by Wix |
| Bestandsgrootte | 18.08 KB |
| Aantal Installaties | 114 |
| Huidige Versie | 0.7.0 |
| Laatst Bijgewerkt | 2024-01-14 |
| Publicatiedatum | 2021-09-29 |
| Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
| Ontwikkelaar | Alexander Zaytsev |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://github.com/shoonia/velo-filesystem |
| Help Pagina-URL | https://github.com/shoonia/velo-filesystem/discussions |
| Ondersteunde Talen | 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\/*"
]
}
]
} | |