Velo Filesystem
Chrome extension for managing the virtual file system in Velo by Wix
Velo Filesystem là gì?
Velo Filesystem là một tiện ích mở rộng Chrome được phát triển bởi Alexander Zaytsev, và tính năng chính của nó là "Chrome extension for managing the virtual file system in Velo by Wix".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Velo Filesystem
Tải xuống các tệp mở rộng Velo Filesystem dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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/
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Velo Filesystem |
ID | gjmdfafehkeddjhielckakekclainbpn |
URL Chính Thức | https://chromewebstore.google.com/detail/velo-filesystem/gjmdfafehkeddjhielckakekclainbpn |
Mô tả | Chrome extension for managing the virtual file system in Velo by Wix |
Kích Thước Tệp | 18.08 KB |
Số Lần Cài Đặt | 114 |
Phiên Bản Hiện Tại | 0.7.0 |
Cập Nhật Lần Cuối | 2024-01-14 |
Ngày Phát Hành | 2021-09-29 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | Alexander Zaytsev |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/shoonia/velo-filesystem |
URL Trang Trợ Giúp | https://github.com/shoonia/velo-filesystem/discussions |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } ] } |