Edit in Zed
Adds edit in Zed buttons to textareas
Edit in Zedとは何ですか?
Edit in ZedはZef Hemelによって開発されたChromeの拡張機能で、その主な機能は「Adds edit in Zed buttons to textareas」です。
拡張機能のスクリーンショット
Edit in Zed拡張機能のCRXファイルをダウンロード
Edit in Zed拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
                        This Chrome extensions scans all websites for textareas and contenteditables and adds a little Zed icon to it. When you click it (and you have Zed Chrome App installed -- http://zedapp.org), Zed will pop up to edit the contents of the text area and update it automatically.
New in 0.1.3: Gmail compose edit boxes are now also supported.                     拡張機能の基本情報
| 名前 |  | 
| ID | dpkaficlkfnjemlheobmkabnnoafeepg | 
| 公式URL | https://chromewebstore.google.com/detail/edit-in-zed/dpkaficlkfnjemlheobmkabnnoafeepg | 
| 説明 | Adds edit in Zed buttons to textareas | 
| ファイルサイズ | 94.42 KB | 
| インストール数 | 324 | 
| 現在のバージョン | 0.1.3 | 
| 最終更新日 | 2014-05-15 | 
| 公開日 | 2014-05-15 | 
| 評価 | 4.80/5 合計 10 レビュー | 
| 開発者 | Zef Hemel | 
| 支払い方法 | free | 
| 拡張機能のウェブサイト | http://zedapp.org | 
| ヘルプページのURL | https://github.com/zedapp/edit-in-zed/issues | 
| 対応言語 | en | 
| manifest.json | |
| {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Edit in Zed",
    "description": "Adds edit in Zed buttons to textareas",
    "version": "0.1.3",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "add-buttons.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "icons": {
        "128": "Icon.png",
        "16": "Icon16.png",
        "48": "Icon48.png"
    }
} | |