ZippyProject

A extension to copy and paste bubble elements.

Co to jest ZippyProject?

ZippyProject to rozszerzenie Chrome opracowane przez https://zippyproject.com, a jego główną funkcją jest „A extension to copy and paste bubble elements.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia ZippyProject

Pobierz pliki rozszerzeń ZippyProject w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa ZippyProject ZippyProject
ID oooolokpngamkphleddbjcjfgdbbjkmo
Oficjalny URL https://chromewebstore.google.com/detail/zippyproject/oooolokpngamkphleddbjcjfgdbbjkmo
Opis A extension to copy and paste bubble elements.
Rozmiar pliku 223 KB
Liczba instalacji 192
Aktualna Wersja 2.12.5
Ostatnia Aktualizacja 2023-11-21
Data Publikacji 2022-02-06
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper https://zippyproject.com
E-mail [email protected]
Typ Płatności in_app
Strona Rozszerzenia https://zippyproject.com
Adres URL Strony Pomocy https://wegetdesign.com/support
Adres URL Strony Polityki Prywatności https://wegetdesign.com/terms?legals=dataprotectionpolicy
Obsługiwane Języki 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"
            ]
        }
    ]
}