Codehub for Webflow

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

What is Codehub for Webflow?

Codehub for Webflow is a Chrome extension developed by marvin, and its main feature is "Adds a window to save and manage code snippets for Webflow projects.".

Extension Screenshots

screenshot
screenshot

Download Codehub for Webflow Extension CRX File

Download Codehub for Webflow extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Codehub for Webflow Codehub for Webflow
ID ebjjilpkbpnjikomachppbogkgdndijh
Official URL https://chromewebstore.google.com/detail/codehub-for-webflow/ebjjilpkbpnjikomachppbogkgdndijh
Description Adds a window to save and manage code snippets for Webflow projects.
File Size 117 KB
Installation Count 94
Current Version 8
Last Updated 2024-03-04
Publish Date 2024-01-28
Rating 5.00/5 Total 1 Ratings
Developer marvin
Email [email protected]
Payment Type free
Extension Website https://www.patreon.com/MarvinBlach
Help Page URL https://www.patreon.com/MarvinBlach
Privacy Policy Page URL https://www.halbstark.de/datenschutzerklarung
Supported Languages 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"
    }
}