CodeMode for Webflow
SOME code never hurt anyone...
What is CodeMode for Webflow?
CodeMode for Webflow is a Chrome extension developed by Kevin Haag, and its main feature is "SOME code never hurt anyone...".
Extension Screenshots
Download CodeMode for Webflow Extension CRX File
Download CodeMode 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
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
Extension Basic Information
Name | CodeMode for Webflow |
ID | mbgenamkihplkffggckaplhnancbojbk |
Official URL | https://chromewebstore.google.com/detail/codemode-for-webflow/mbgenamkihplkffggckaplhnancbojbk |
Description | SOME code never hurt anyone... |
File Size | 44.93 KB |
Installation Count | 1,861 |
Current Version | 1.0.4 |
Last Updated | 2021-06-13 |
Publish Date | 2020-10-12 |
Rating | 4.44/5 Total 9 Ratings |
Developer | Kevin Haag |
[email protected] | |
Payment Type | free |
Extension Website | https://twitter.com/kevinhaag |
Help Page URL | https://twitter.com/kevinhaag |
Supported Languages | 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 } |