Edit in Zed
Adds edit in Zed buttons to textareas
What is Edit in Zed?
Edit in Zed is a Chrome extension developed by Zef Hemel, and its main feature is "Adds edit in Zed buttons to textareas".
Extension Screenshots
Download Edit in Zed Extension CRX File
Download Edit in Zed extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Edit in Zed |
ID | dpkaficlkfnjemlheobmkabnnoafeepg |
Official URL | https://chromewebstore.google.com/detail/edit-in-zed/dpkaficlkfnjemlheobmkabnnoafeepg |
Description | Adds edit in Zed buttons to textareas |
File Size | 94.42 KB |
Installation Count | 324 |
Current Version | 0.1.3 |
Last Updated | 2014-05-15 |
Publish Date | 2014-05-15 |
Rating | 4.80/5 Total 10 Ratings |
Developer | Zef Hemel |
Payment Type | free |
Extension Website | http://zedapp.org |
Help Page URL | https://github.com/zedapp/edit-in-zed/issues |
Supported Languages | 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" } } |