Codehub for Webflow
Adds a window to save and manage code snippets for Webflow projects.
Qu'est-ce que Codehub for Webflow ?
Codehub for Webflow est une extension Chrome développée par marvin, et sa fonction principale est "Adds a window to save and manage code snippets for Webflow projects.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Codehub for Webflow
Téléchargez les fichiers d'extension Codehub for Webflow au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Codehub for Webflow |
ID | ebjjilpkbpnjikomachppbogkgdndijh |
URL Officiel | https://chromewebstore.google.com/detail/codehub-for-webflow/ebjjilpkbpnjikomachppbogkgdndijh |
Description | Adds a window to save and manage code snippets for Webflow projects. |
Taille du Fichier | 117 KB |
Nombre d'Installations | 94 |
Version Actuelle | 8 |
Dernière Mise à Jour | 2024-03-04 |
Date de Publication | 2024-01-28 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | marvin |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://www.patreon.com/MarvinBlach |
URL de la Page d'Aide | https://www.patreon.com/MarvinBlach |
URL de la Page de Politique de Confidentialité | https://www.halbstark.de/datenschutzerklarung |
Langues Prises en Charge | 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": [ " |