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 擴展基本資訊
| 名稱 | |
| ID | oooolokpngamkphleddbjcjfgdbbjkmo |
| 官方網址 | 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"
]
}
]
} | |