Codehub for Webflow
Adds a window to save and manage code snippets for Webflow projects.
Codehub for Webflow란 무엇입니까?
Codehub for Webflow은(는) marvin에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds a window to save and manage code snippets for Webflow projects."입니다.
확장 프로그램 스크린샷
Codehub for Webflow 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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.
확장 프로그램 기본 정보
이름 | Codehub for Webflow |
ID | ebjjilpkbpnjikomachppbogkgdndijh |
공식 URL | https://chromewebstore.google.com/detail/codehub-for-webflow/ebjjilpkbpnjikomachppbogkgdndijh |
설명 | Adds a window to save and manage code snippets for Webflow projects. |
파일 크기 | 117 KB |
설치 횟수 | 94 |
현재 버전 | 8 |
최근 업데이트 | 2024-03-04 |
출시 날짜 | 2024-01-28 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | marvin |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://www.patreon.com/MarvinBlach |
도움말 페이지 URL | https://www.patreon.com/MarvinBlach |
개인정보 보호 정책 페이지 URL | https://www.halbstark.de/datenschutzerklarung |
지원되는 언어 | 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": [ " |