CodeMode for Webflow

SOME code never hurt anyone...

什么是CodeMode for Webflow?

CodeMode for Webflow是由Kevin Haag开发的Chrome扩展程序,该扩展的主要功能是“SOME code never hurt anyone...”。

扩展截图

screenshot

下载CodeMode for Webflow扩展crx文件

下载CodeMode for Webflow扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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 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
}