Codehub for Webflow
Adds a window to save and manage code snippets for Webflow projects.
Cos'è Codehub for Webflow?
Codehub for Webflow è un'estensione di Chrome sviluppata da marvin, e la sua funzione principale è "Adds a window to save and manage code snippets for Webflow projects.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Codehub for Webflow
Scarica i file di estensione Codehub for Webflow 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
Codehub for Webflow is a practical Chrome extension designed to streamline your web development workflow on Webflow. THE PROBLEM: If you often find yourself searching through multiple projects to find those handy code snippets you've used before, Codehub is here to simplify your life. THE SOLUTION: This extension provides a centralized hub where you can save, manage, and easily access all your frequently used code snippets. With Codehub, reusing code across your Webflow projects becomes a breeze, saving you time and effort. It's the perfect tool for developers looking to optimize their coding process and enhance productivity on Webflow.
Informazioni di Base sull'Estensione
Nome | Codehub for Webflow |
ID | ebjjilpkbpnjikomachppbogkgdndijh |
URL Ufficiale | https://chromewebstore.google.com/detail/codehub-for-webflow/ebjjilpkbpnjikomachppbogkgdndijh |
Descrizione | Adds a window to save and manage code snippets for Webflow projects. |
Dimensione del File | 117 KB |
Conteggio Installazioni | 94 |
Versione Corrente | 8 |
Ultimo Aggiornamento | 2024-03-04 |
Data di Pubblicazione | 2024-01-28 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | marvin |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://www.patreon.com/MarvinBlach |
URL della Pagina di Aiuto | https://www.patreon.com/MarvinBlach |
URL della Pagina della Politica sulla Privacy | https://www.halbstark.de/datenschutzerklarung |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Codehub for Webflow", "version": "8", "author": "Marvin Blach", "description": "Adds a window to save and manage code snippets for Webflow projects.", "permissions": [ "storage", "https:\/\/*.webflow.com\/*" ], "action": { "default_icon": { "128": "Codehub.png" } }, "content_scripts": [ { "matches": [ "https:\/\/*.webflow.com\/*" ], "js": [ "content.js", "codemirror.min.js", "javascript.min.js", "popper.js", "tippy.js" ], "css": [ "app.css", "codemirror.min.css", "dracula.min.css" ] } ], "web_accessible_resources": [ { "resources": [ "index.html" ], "matches": [ " |