Codehub for Webflow
Adds a window to save and manage code snippets for Webflow projects.
Hvad er Codehub for Webflow?
Codehub for Webflow er en Chrome-udvidelse udviklet af marvin, og dens hovedfunktion er "Adds a window to save and manage code snippets for Webflow projects.".
Udvidelsesskærmbilleder
Download Codehub for Webflow-udvidelses-CRX-fil
Download Codehub for Webflow-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Codehub for Webflow |
ID | ebjjilpkbpnjikomachppbogkgdndijh |
Officiel URL | https://chromewebstore.google.com/detail/codehub-for-webflow/ebjjilpkbpnjikomachppbogkgdndijh |
Beskrivelse | Adds a window to save and manage code snippets for Webflow projects. |
Filstørrelse | 117 KB |
Antal Installationer | 94 |
Nuværende Version | 8 |
Senest Opdateret | 2024-03-04 |
Udgivelsesdato | 2024-01-28 |
Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
Udvikler | marvin |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://www.patreon.com/MarvinBlach |
Hjælpeside-URL | https://www.patreon.com/MarvinBlach |
URL til Fortrolighedspolitik Side | https://www.halbstark.de/datenschutzerklarung |
Understøttede Sprog | 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": [ " |