Codehub for Webflow

Adds a window to save and manage code snippets for Webflow projects.

Wat is Codehub for Webflow?

Codehub for Webflow is een Chrome-extensie ontwikkeld door marvin, en de belangrijkste functie is "Adds a window to save and manage code snippets for Webflow projects.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Codehub for Webflow

Download Codehub for Webflow-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Codehub for Webflow Codehub for Webflow
ID ebjjilpkbpnjikomachppbogkgdndijh
Officiële URL https://chromewebstore.google.com/detail/codehub-for-webflow/ebjjilpkbpnjikomachppbogkgdndijh
Beschrijving Adds a window to save and manage code snippets for Webflow projects.
Bestandsgrootte 117 KB
Aantal Installaties 94
Huidige Versie 8
Laatst Bijgewerkt 2024-03-04
Publicatiedatum 2024-01-28
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar marvin
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://www.patreon.com/MarvinBlach
Help Pagina-URL https://www.patreon.com/MarvinBlach
URL van de Privacybeleid Pagina https://www.halbstark.de/datenschutzerklarung
Ondersteunde Talen 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": [
                ""
            ]
        }
    ],
    "icons": {
        "128": "Codehub.png"
    }
}