Velo Filesystem
Chrome extension for managing the virtual file system in Velo by Wix
Τι είναι το Velo Filesystem;
Το Velo Filesystem είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Alexander Zaytsev, και η κύρια λειτουργία του είναι "Chrome extension for managing the virtual file system in Velo by Wix".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Velo Filesystem
Λήψη αρχείων επέκτασης Velo Filesystem σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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/
Βασικές Πληροφορίες Επέκτασης
Όνομα | Velo Filesystem |
ID | gjmdfafehkeddjhielckakekclainbpn |
Επίσημο URL | https://chromewebstore.google.com/detail/velo-filesystem/gjmdfafehkeddjhielckakekclainbpn |
Περιγραφή | Chrome extension for managing the virtual file system in Velo by Wix |
Μέγεθος Αρχείου | 18.08 KB |
Αριθμός Εγκαταστάσεων | 114 |
Τρέχουσα Έκδοση | 0.7.0 |
Τελευταία Ενημέρωση | 2024-01-14 |
Ημερομηνία Δημοσίευσης | 2021-09-29 |
Αξιολόγηση | 5.00/5 Συνολικά 1 Αξιολογήσεις |
Προγραμματιστής | Alexander Zaytsev |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/shoonia/velo-filesystem |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/shoonia/velo-filesystem/discussions |
Υποστηριζόμενες Γλώσσες | 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\/*" ] } ] } |