ZippyProject

A extension to copy and paste bubble elements.

Wat is ZippyProject?

ZippyProject is een Chrome-extensie ontwikkeld door https://zippyproject.com, en de belangrijkste functie is "A extension to copy and paste bubble elements.".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie ZippyProject

Download ZippyProject-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam ZippyProject ZippyProject
ID oooolokpngamkphleddbjcjfgdbbjkmo
Officiële URL https://chromewebstore.google.com/detail/zippyproject/oooolokpngamkphleddbjcjfgdbbjkmo
Beschrijving A extension to copy and paste bubble elements.
Bestandsgrootte 223 KB
Aantal Installaties 192
Huidige Versie 2.12.5
Laatst Bijgewerkt 2023-11-21
Publicatiedatum 2022-02-06
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar https://zippyproject.com
E-mail [email protected]
Betalingswijze in_app
Extensiewebsite https://zippyproject.com
Help Pagina-URL https://wegetdesign.com/support
URL van de Privacybeleid Pagina https://wegetdesign.com/terms?legals=dataprotectionpolicy
Ondersteunde Talen 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"
            ]
        }
    ]
}