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"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ 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 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\/*"
            ]
        }
    ]
}