ZippyProject
A extension to copy and paste bubble elements.
ZippyProject là gì?
ZippyProject là một tiện ích mở rộng Chrome được phát triển bởi https://zippyproject.com, và tính năng chính của nó là "A extension to copy and paste bubble elements.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng ZippyProject
Tải xuống các tệp mở rộng ZippyProject dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | ZippyProject |
ID | oooolokpngamkphleddbjcjfgdbbjkmo |
URL Chính Thức | https://chromewebstore.google.com/detail/zippyproject/oooolokpngamkphleddbjcjfgdbbjkmo |
Mô tả | A extension to copy and paste bubble elements. |
Kích Thước Tệp | 223 KB |
Số Lần Cài Đặt | 192 |
Phiên Bản Hiện Tại | 2.12.5 |
Cập Nhật Lần Cuối | 2023-11-21 |
Ngày Phát Hành | 2022-02-06 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | https://zippyproject.com |
[email protected] | |
Loại Thanh Toán | in_app |
Trang Web Mở Rộng | https://zippyproject.com |
URL Trang Trợ Giúp | https://wegetdesign.com/support |
URL Trang Chính Sách Bảo Mật | https://wegetdesign.com/terms?legals=dataprotectionpolicy |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |