Edit in Zed

Adds edit in Zed buttons to textareas

Edit in Zedคืออะไร?

Edit in Zed เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Zef Hemel และคุณลักษณะหลักของมันคือ "Adds edit in Zed buttons to textareas"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Edit in Zed

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    }
}