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".
Снимки экрана расширения
Скачать файл 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 |
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" } } |