Codehub for Webflow
Adds a window to save and manage code snippets for Webflow projects.
Vad är Codehub for Webflow?
Codehub for Webflow är en Chrome-tillägg utvecklad av marvin, och dess huvudfunktion är "Adds a window to save and manage code snippets for Webflow projects.".
Tilläggsskärmbilder
Ladda ner Codehub for Webflow-förlängningens CRX-fil
Ladda ner Codehub for Webflow-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
Namn | Codehub for Webflow |
ID | ebjjilpkbpnjikomachppbogkgdndijh |
Officiell webbadress | https://chromewebstore.google.com/detail/codehub-for-webflow/ebjjilpkbpnjikomachppbogkgdndijh |
Beskrivning | Adds a window to save and manage code snippets for Webflow projects. |
Filstorlek | 117 KB |
Antal Installationer | 94 |
Aktuell Version | 8 |
Senast Uppdaterad | 2024-03-04 |
Publiceringsdatum | 2024-01-28 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | marvin |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://www.patreon.com/MarvinBlach |
Hjälpsida URL | https://www.patreon.com/MarvinBlach |
URL till Sekretesspolicy Sidan | https://www.halbstark.de/datenschutzerklarung |
Stödda Språk | 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": [ " |