ZippyProject
A extension to copy and paste bubble elements.
What is ZippyProject?
ZippyProject is a Chrome extension developed by https://zippyproject.com, and its main feature is "A extension to copy and paste bubble elements.".
Extension Screenshots
Download ZippyProject Extension CRX File
Download ZippyProject extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | ZippyProject |
ID | oooolokpngamkphleddbjcjfgdbbjkmo |
Official URL | https://chromewebstore.google.com/detail/zippyproject/oooolokpngamkphleddbjcjfgdbbjkmo |
Description | A extension to copy and paste bubble elements. |
File Size | 223 KB |
Installation Count | 192 |
Current Version | 2.12.5 |
Last Updated | 2023-11-21 |
Publish Date | 2022-02-06 |
Rating | 5.00/5 Total 1 Ratings |
Developer | https://zippyproject.com |
[email protected] | |
Payment Type | in_app |
Extension Website | https://zippyproject.com |
Help Page URL | https://wegetdesign.com/support |
Privacy Policy Page URL | https://wegetdesign.com/terms?legals=dataprotectionpolicy |
Supported Languages | 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" ] } ] } |