CodeMode for Webflow
SOME code never hurt anyone...
CodeMode for Webflow란 무엇입니까?
CodeMode for Webflow은(는) Kevin Haag에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "SOME code never hurt anyone..."입니다.
확장 프로그램 스크린샷
CodeMode for Webflow 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
CodeMode is a mod for Webflow that makes it easier to write code in the designer, without any distractions. • One-click to launch • Full screen coding view • Side-by-side layout to see more of your code • Keyboard shortcut: Option + A (Mac) / Alt + A (Windows) -- ☕️ Want to support me? https://www.buymeacoffee.com/kevinhaag 💬 Follow me on Twitter https://twitter.com/kevinhaag
확장 프로그램 기본 정보
이름 | CodeMode for Webflow |
ID | mbgenamkihplkffggckaplhnancbojbk |
공식 URL | https://chromewebstore.google.com/detail/codemode-for-webflow/mbgenamkihplkffggckaplhnancbojbk |
설명 | SOME code never hurt anyone... |
파일 크기 | 44.93 KB |
설치 횟수 | 1,861 |
현재 버전 | 1.0.4 |
최근 업데이트 | 2021-06-13 |
출시 날짜 | 2020-10-12 |
평점 | 4.44/5 총 9 개의 평점 |
개발자 | Kevin Haag |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://twitter.com/kevinhaag |
도움말 페이지 URL | https://twitter.com/kevinhaag |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "CodeMode for Webflow", "version": "1.0.4", "description": "SOME code never hurt anyone...", "permissions": [ "declarativeContent" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/webflow.com\/design\/*" ], "js": [ "lib\/jquery-3.5.1.min.js", "contentScript.js" ], "css": [ "styles.css" ], "run_at": "document_idle" } ], "page_action": { "default_popup": "popup.html", "default_icon": { "128": "images\/128.png" } }, "icons": { "128": "images\/128.png" }, "manifest_version": 2 } |