Codehub for Webflow
Adds a window to save and manage code snippets for Webflow projects.
Was ist Codehub for Webflow?
Codehub for Webflow ist eine Chrome-Erweiterung, die von marvin entwickelt wurde, und ihr Hauptmerkmal ist "Adds a window to save and manage code snippets for Webflow projects.".
Erweiterungsscreenshots
Codehub for Webflow-Erweiterungs-CRX-Datei herunterladen
Laden Sie Codehub for Webflow-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Codehub for Webflow |
ID | ebjjilpkbpnjikomachppbogkgdndijh |
Offizielle URL | https://chromewebstore.google.com/detail/codehub-for-webflow/ebjjilpkbpnjikomachppbogkgdndijh |
Beschreibung | Adds a window to save and manage code snippets for Webflow projects. |
Dateigröße | 117 KB |
Installationsanzahl | 94 |
Aktuelle Version | 8 |
Letztes Update | 2024-03-04 |
Veröffentlichungsdatum | 2024-01-28 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | marvin |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://www.patreon.com/MarvinBlach |
Hilfeseite URL | https://www.patreon.com/MarvinBlach |
URL der Datenschutzrichtlinien-Seite | https://www.halbstark.de/datenschutzerklarung |
Unterstützte Sprachen | 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": [ " |