ZippyProject
A extension to copy and paste bubble elements.
Что такое ZippyProject?
ZippyProject - это расширение Chrome, разработанное https://zippyproject.com, и его основная функция - "A extension to copy and paste bubble elements.".
Снимки экрана расширения
Скачать файл CRX расширения ZippyProject
Скачайте файлы расширений 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"
]
}
]
} | |