ZippyProject
A extension to copy and paste bubble elements.
Cos'è ZippyProject?
ZippyProject è un'estensione di Chrome sviluppata da https://zippyproject.com, e la sua funzione principale è "A extension to copy and paste bubble elements.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione ZippyProject
Scarica i file di estensione ZippyProject in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | ZippyProject |
ID | oooolokpngamkphleddbjcjfgdbbjkmo |
URL Ufficiale | https://chromewebstore.google.com/detail/zippyproject/oooolokpngamkphleddbjcjfgdbbjkmo |
Descrizione | A extension to copy and paste bubble elements. |
Dimensione del File | 223 KB |
Conteggio Installazioni | 192 |
Versione Corrente | 2.12.5 |
Ultimo Aggiornamento | 2023-11-21 |
Data di Pubblicazione | 2022-02-06 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | https://zippyproject.com |
[email protected] | |
Tipo di Pagamento | in_app |
Sito Web dell'Estensione | https://zippyproject.com |
URL della Pagina di Aiuto | https://wegetdesign.com/support |
URL della Pagina della Politica sulla Privacy | https://wegetdesign.com/terms?legals=dataprotectionpolicy |
Lingue Supportate | 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" ] } ] } |