DesignMode
Tiny helper to enable document.designMode
什么是DesignMode?
DesignMode是由stefanjudis开发的Chrome扩展程序,该扩展的主要功能是“Tiny helper to enable document.designMode”。
扩展截图
下载DesignMode扩展crx文件
下载DesignMode扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
                        Shortcut to toggle document.designMode. This allows you to edit any website easily.
Perfect to hand over to designers to play around with different amounts of text.                     扩展基本信息
| 名称 |   |  
| ID | fdmgbnmbkiimohjhijcjkjmdbhfhepai | 
| 官方URL | https://chromewebstore.google.com/detail/designmode/fdmgbnmbkiimohjhijcjkjmdbhfhepai | 
| 简介 | Tiny helper to enable document.designMode | 
| 文件大小 | 2.78 MB | 
| 安装次数 | 524 | 
| 当前版本 | 1.1 | 
| 更新时间 | 2016-09-23 | 
| 上架时间 | 2016-09-23 | 
| 评分 | 5.00/5 共1次评分 | 
| 开发者 | stefanjudis | 
| 电子邮箱 | [email protected] | 
| 付费类型 | free | 
| 扩展官网 | https://github.com/stefanjudis/designMode-chrome-extension | 
| 帮助页面URL | https://github.com/stefanjudis/designMode-chrome-extension/issues | 
| 支持的语言 | en | 
| manifest.json | |
 {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "DesignMode",
    "description": "Tiny helper to enable document.designMode",
    "version": "1.1",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "browser_action": {
        "default_icon": "icon-off.png",
        "default_title": "Enable design mode!"
    },
    "permissions": [
        "activeTab"
    ]
}  |  |