ZippyProject

A extension to copy and paste bubble elements.

ZippyProjectคืออะไร?

ZippyProject เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://zippyproject.com และคุณลักษณะหลักของมันคือ "A extension to copy and paste bubble elements."

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

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ZippyProject

ดาวน์โหลดไฟล์ส่วนขยาย ZippyProject ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
            ]
        }
    ]
}