Text-Aid-Too

Edit web inputs (including on GMail) with your favourite native text editor.

什么是Text-Aid-Too?

Text-Aid-Too是由Stephen Blott开发的Chrome扩展程序,该扩展的主要功能是“Edit web inputs (including on GMail) with your favourite native text editor.”。

扩展截图

screenshot

下载Text-Aid-Too扩展crx文件

下载Text-Aid-Too扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Use vim or emacs, say, to edit web inputs.  Unlike similar tools:

- This also works with contentEditable inputs (such as those found on GMail or Google's Inbox).

- This updates the input whenever the file is written, so you can preview your changes as you go along, without having to close your editor.

- This sets the file extension appropriately, so your text editor can detect the correct file type (".txt" for regular inputs, and ".html" for contentEditable inputs).

- Optionally (and experimentally), you can use Markdown to edit contentEditable inputs (for example, you can compose GMail messages using Markdown).  See the web page for details.

For more information (or to report issues), see the project web page: https://github.com/smblott-github/text-aid-too#text-aid-too.

You will also have to install the text-aid-too server.  The instructions are on the web page, above.

This is not compatible with other text-aid servers.  It doesn't use HTTP, but uses web sockets instead.

What's new?
- With server version 1.0.5, added experimental support for writing markdown for text from contentEditable inputs (e.g. the GMail compose window).                    

扩展基本信息

名称 Text-Aid-Too Text-Aid-Too
ID klbcooigafjpbiahdjccmajnaehomajc
官方URL https://chromewebstore.google.com/detail/text-aid-too/klbcooigafjpbiahdjccmajnaehomajc
简介 Edit web inputs (including on GMail) with your favourite native text editor.
文件大小 16.82 KB
安装次数 118
当前版本 1.1.1
更新时间 2015-06-16
上架时间 2015-06-16
评分 5.00/5 共2次评分
开发者 Stephen Blott
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/smblott-github/text-aid-too#text-aid-too
帮助页面URL https://github.com/smblott-github/text-aid-too/issues
支持的语言 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Text-Aid-Too",
    "version": "1.1.1",
    "description": "Edit web inputs (including on GMail) with your favourite native text editor.",
    "background": {
        "scripts": [
            "common.js",
            "background.js"
        ]
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "common.js",
                "foreground.js"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ],
    "icons": {
        "16": "icons\/icon-16.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "page_action": {
        "default_icon": {
            "19": "icons\/icon-19.png",
            "38": "icons\/icon-38.png"
        },
        "default_title": "Text-Aid-Too"
    },
    "permissions": [
        "storage"
    ]
}