Edit in Zed

Adds edit in Zed buttons to textareas

Co to jest Edit in Zed?

Edit in Zed to rozszerzenie Chrome opracowane przez Zef Hemel, a jego główną funkcją jest „Adds edit in Zed buttons to textareas”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Edit in Zed

Pobierz pliki rozszerzeń Edit in Zed w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Edit in Zed Edit in Zed
ID dpkaficlkfnjemlheobmkabnnoafeepg
Oficjalny URL https://chromewebstore.google.com/detail/edit-in-zed/dpkaficlkfnjemlheobmkabnnoafeepg
Opis Adds edit in Zed buttons to textareas
Rozmiar pliku 94.42 KB
Liczba instalacji 324
Aktualna Wersja 0.1.3
Ostatnia Aktualizacja 2014-05-15
Data Publikacji 2014-05-15
Ocena 4.80/5 Łącznie 10 Oceny
Deweloper Zef Hemel
Typ Płatności free
Strona Rozszerzenia http://zedapp.org
Adres URL Strony Pomocy https://github.com/zedapp/edit-in-zed/issues
Obsługiwane Języki 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"
    }
}