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 |
| 官方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 |
| 电子邮箱 | [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"
]
}
]
} | |