Edit in Zed

Adds edit in Zed buttons to textareas

Edit in Zed là gì?

Edit in Zed là một tiện ích mở rộng Chrome được phát triển bởi Zef Hemel, và tính năng chính của nó là "Adds edit in Zed buttons to textareas".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Edit in Zed

Tải xuống các tệp mở rộng Edit in Zed dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Edit in Zed Edit in Zed
ID dpkaficlkfnjemlheobmkabnnoafeepg
URL Chính Thức https://chromewebstore.google.com/detail/edit-in-zed/dpkaficlkfnjemlheobmkabnnoafeepg
Mô tả Adds edit in Zed buttons to textareas
Kích Thước Tệp 94.42 KB
Số Lần Cài Đặt 324
Phiên Bản Hiện Tại 0.1.3
Cập Nhật Lần Cuối 2014-05-15
Ngày Phát Hành 2014-05-15
Đánh Giá 4.80/5 Tổng số 10 Đánh Giá
Nhà Phát Triển Zef Hemel
Loại Thanh Toán free
Trang Web Mở Rộng http://zedapp.org
URL Trang Trợ Giúp https://github.com/zedapp/edit-in-zed/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}