ZippyProject
A extension to copy and paste bubble elements.
Apa itu ZippyProject?
ZippyProject adalah ekstensi Chrome yang dikembangkan oleh https://zippyproject.com, dan fitur utamanya adalah "A extension to copy and paste bubble elements.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi ZippyProject
Unduh file ekstensi ZippyProject dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | ZippyProject |
ID | oooolokpngamkphleddbjcjfgdbbjkmo |
URL Resmi | https://chromewebstore.google.com/detail/zippyproject/oooolokpngamkphleddbjcjfgdbbjkmo |
Deskripsi | A extension to copy and paste bubble elements. |
Ukuran File | 223 KB |
Jumlah Instalasi | 192 |
Versi Saat Ini | 2.12.5 |
Terakhir Diperbarui | 2023-11-21 |
Tanggal Publikasi | 2022-02-06 |
Penilaian | 5.00/5 Total 1 Penilaian |
Pengembang | https://zippyproject.com |
[email protected] | |
Tipe Pembayaran | in_app |
Situs Ekstensi | https://zippyproject.com |
URL Halaman Bantuan | https://wegetdesign.com/support |
URL Halaman Kebijakan Privasi | https://wegetdesign.com/terms?legals=dataprotectionpolicy |
Bahasa yang Didukung | 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" ] } ] } |