ZippyProject
A extension to copy and paste bubble elements.
ZippyProjectとは何ですか?
ZippyProjectはhttps://zippyproject.comによって開発されたChromeの拡張機能で、その主な機能は「A extension to copy and paste bubble elements.」です。
拡張機能のスクリーンショット
ZippyProject拡張機能のCRXファイルをダウンロード
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 |
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 |
Eメール | [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" ] } ] } |