Edit in Zed

Adds edit in Zed buttons to textareas

Cos'è Edit in Zed?

Edit in Zed è un'estensione di Chrome sviluppata da Zef Hemel, e la sua funzione principale è "Adds edit in Zed buttons to textareas".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Edit in Zed

Scarica i file di estensione Edit in Zed in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Edit in Zed Edit in Zed
ID dpkaficlkfnjemlheobmkabnnoafeepg
URL Ufficiale https://chromewebstore.google.com/detail/edit-in-zed/dpkaficlkfnjemlheobmkabnnoafeepg
Descrizione Adds edit in Zed buttons to textareas
Dimensione del File 94.42 KB
Conteggio Installazioni 324
Versione Corrente 0.1.3
Ultimo Aggiornamento 2014-05-15
Data di Pubblicazione 2014-05-15
Valutazione 4.80/5 Totale 10 Valutazioni
Sviluppatore Zef Hemel
Tipo di Pagamento free
Sito Web dell'Estensione http://zedapp.org
URL della Pagina di Aiuto https://github.com/zedapp/edit-in-zed/issues
Lingue Supportate 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"
    }
}