Library - UI Components for Wix

Build websites faster in Wix with UI components library.

Library - UI Components for Wix란 무엇입니까?

Library - UI Components for Wix은(는) https://certifiedcode.us에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Build websites faster in Wix with UI components library."입니다.

확장 프로그램 스크린샷

screenshot

Library - UI Components for Wix 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension allows you to copy components from Library to Wix Website Editor.                    

확장 프로그램 기본 정보

이름 Library - UI Components for Wix Library - UI Components for Wix
ID bidnnalgdambofjfpcdncpjfmamhelmi
공식 URL https://chromewebstore.google.com/detail/library-ui-components-for/bidnnalgdambofjfpcdncpjfmamhelmi
설명 Build websites faster in Wix with UI components library.
파일 크기 153 KB
설치 횟수 570
현재 버전 3.0.6
최근 업데이트 2023-10-16
출시 날짜 2022-03-31
평점 1.00/5 총 1 개의 평점
개발자 https://certifiedcode.us
이메일 [email protected]
결제 유형 in_app
확장 프로그램 웹 사이트 https://www.certifiedcode.us/product/library
도움말 페이지 URL https://www.certifiedcode.us/support/contact
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Library - UI Components for Wix",
    "description": "Build websites faster in Wix with UI components library.",
    "version": "3.0.6",
    "manifest_version": 3,
    "action": {
        "default_icon": {
            "64": "assets\/default_icon_64.png",
            "24": "assets\/default_icon_24.png"
        }
    },
    "icons": {
        "64": "assets\/default_icon_64.png",
        "24": "assets\/default_icon_24.png"
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/editor.wix.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "js\/wix.js",
                "js\/editor.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "\/*"
            ],
            "matches": [
                "https:\/\/editor.wix.com\/*"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/editor.wix.com\/*"
    ]
}