Edit in Zed

Adds edit in Zed buttons to textareas

Edit in Zed क्या है?

Edit in Zed Zef Hemel द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds edit in Zed buttons to textareas"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Edit in Zed एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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