Text-Aid-Too

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

¿Qué es Text-Aid-Too?

Text-Aid-Too es una extensión de Chrome desarrollada por Stephen Blott, y su función principal es "Edit web inputs (including on GMail) with your favourite native text editor.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Text-Aid-Too

Descarga archivos de extensión Text-Aid-Too en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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).                    

Información Básica de la Extensión

Nombre Text-Aid-Too Text-Aid-Too
ID klbcooigafjpbiahdjccmajnaehomajc
URL Oficial https://chromewebstore.google.com/detail/text-aid-too/klbcooigafjpbiahdjccmajnaehomajc
Descripción Edit web inputs (including on GMail) with your favourite native text editor.
Tamaño del Archivo 16.82 KB
Cantidad de Instalaciones 118
Versión Actual 1.1.1
Última Actualización 2015-06-16
Fecha de Publicación 2015-06-16
Calificación 5.00/5 Total de 2 Calificaciones
Desarrollador Stephen Blott
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/smblott-github/text-aid-too#text-aid-too
URL de la Página de Ayuda https://github.com/smblott-github/text-aid-too/issues
Idiomas Soportados 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"
    ]
}