ZippyProject

A extension to copy and paste bubble elements.

ZippyProject란 무엇입니까?

ZippyProject은(는) https://zippyproject.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A extension to copy and paste bubble elements."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Reuse elements across many applications, in one click. Copy and paste reusable elements and build up your bubble.io application in a consistent way.

From UI elements, workflows, datatypes and option sets - the most comprehensive tool for Bubble.io                    

확장 프로그램 기본 정보

이름 ZippyProject ZippyProject
ID oooolokpngamkphleddbjcjfgdbbjkmo
공식 URL https://chromewebstore.google.com/detail/zippyproject/oooolokpngamkphleddbjcjfgdbbjkmo
설명 A extension to copy and paste bubble elements.
파일 크기 223 KB
설치 횟수 192
현재 버전 2.12.5
최근 업데이트 2023-11-21
출시 날짜 2022-02-06
평점 5.00/5 총 1 개의 평점
개발자 https://zippyproject.com
이메일 [email protected]
결제 유형 in_app
확장 프로그램 웹 사이트 https://zippyproject.com
도움말 페이지 URL https://wegetdesign.com/support
개인정보 보호 정책 페이지 URL https://wegetdesign.com/terms?legals=dataprotectionpolicy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ZippyProject",
    "version": "2.12.5",
    "manifest_version": 3,
    "description": "A extension to copy and paste bubble elements.",
    "commands": {
        "copy-element": {
            "suggested_key": {
                "default": "Alt+X"
            },
            "description": "It copies Bubble elements."
        },
        "paste-element": {
            "suggested_key": {
                "default": "Alt+Q"
            },
            "description": "It pastes Bubble elements."
        },
        "clear-clipboard": {
            "suggested_key": {
                "default": "Alt+Y"
            },
            "description": "It Clears Zippy's and Bubble's clipboards."
        }
    },
    "background": {
        "service_worker": "bs-commands.js"
    },
    "permissions": [
        "clipboardRead",
        "clipboardWrite"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/bubble.io\/page*"
            ],
            "js": [
                "js\/cs-commands.js",
                "js\/cs-sidebar.js",
                "js\/cs-communications.js"
            ],
            "css": [
                "css\/sidebar.css"
            ],
            "run_at": "document_idle"
        }
    ],
    "icons": {
        "16": "logos\/mini-logo.png",
        "48": "logos\/resized-logo.png"
    },
    "web_accessible_resources": [
        {
            "matches": [
                "https:\/\/bubble.io\/*"
            ],
            "resources": [
                "logos\/mini-logo-gray.png"
            ]
        }
    ]
}