Velo Filesystem

Chrome extension for managing the virtual file system in Velo by Wix

Velo Filesystem란 무엇입니까?

Velo Filesystem은(는) Alexander Zaytsev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Chrome extension for managing the virtual file system in Velo by Wix"입니다.

확장 프로그램 스크린샷

screenshot

Velo Filesystem 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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\/*"
            ]
        }
    ]
}