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”。

擴展截圖

screenshot

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

擴展基本資訊

名稱 Edit in Zed Edit in Zed
ID dpkaficlkfnjemlheobmkabnnoafeepg
官方網址 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"
    }
}