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
官方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"
    }
}