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 |
| Eメール | [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"
]
} | |