DesignMode

Tiny helper to enable document.designMode

什麼是DesignMode?

DesignMode是由stefanjudis開發的Chrome擴展程式,該擴展的主要功能是“Tiny helper to enable document.designMode”。

擴展截圖

screenshot

下載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.                    

擴展基本資訊

名稱 DesignMode DesignMode
ID fdmgbnmbkiimohjhijcjkjmdbhfhepai
官方網址 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"
    ]
}