Re:format Gmail inline replies

Reply to long emails point-by-point. Highlight text, press a button, and the quote shows up in your compose window.

¿Qué es Re:format Gmail inline replies?

Re:format Gmail inline replies es una extensión de Chrome desarrollada por Value Add, y su función principal es "Reply to long emails point-by-point. Highlight text, press a button, and the quote shows up in your compose window.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Re:format Gmail inline replies

Descarga archivos de extensión Re:format Gmail inline replies 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

                        We add a button to your compose window. When replying, you can highlight text you want to respond to, push our button, and we'll add the quoted text right in your compose view. 

Also, you might like my other extension, which lets you take notes from your tab:
https://chrome.google.com/webstore/detail/jotter/icdbglcdnjonofjpcfpcgpjjchokgnjl                    

Información Básica de la Extensión

Nombre Re:format Gmail inline replies Re:format Gmail inline replies
ID akndolpagcjaolannkpophkacklomagp
URL Oficial https://chromewebstore.google.com/detail/reformat-gmail-inline-rep/akndolpagcjaolannkpophkacklomagp
Descripción Reply to long emails point-by-point. Highlight text, press a button, and the quote shows up in your compose window.
Tamaño del Archivo 27.42 KB
Cantidad de Instalaciones 1,497
Versión Actual 0.0.12
Última Actualización 2022-01-10
Fecha de Publicación 2020-07-07
Calificación 4.89/5 Total de 9 Calificaciones
Desarrollador Value Add
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Re:format Gmail inline replies",
    "description": "Reply to long emails point-by-point.  Highlight text, press a button, and the quote shows up in your compose window.",
    "version": "0.0.12",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "js": [
                "inboxsdk.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "https:\/\/mail.google.com\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "button_q.png"
    ],
    "icons": {
        "128": "icons_128_resized_from_website.png"
    },
    "commands": {
        "QUOTE": {
            "suggested_key": {
                "default": "Ctrl+Shift+B",
                "linux": "Ctrl+Shift+B",
                "mac": "Ctrl+Shift+B",
                "windows": "Ctrl+Shift+B"
            },
            "description": "Quote by keyboard."
        }
    },
    "manifest_version": 2
}