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.

O que é Re:format Gmail inline replies?

Re:format Gmail inline replies é uma extensão do Chrome desenvolvida por Value Add, e sua principal característica é "Reply to long emails point-by-point. Highlight text, press a button, and the quote shows up in your compose window.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Re:format Gmail inline replies

Baixe arquivos de extensão Re:format Gmail inline replies no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Re:format Gmail inline replies Re:format Gmail inline replies
ID akndolpagcjaolannkpophkacklomagp
URL Oficial https://chromewebstore.google.com/detail/reformat-gmail-inline-rep/akndolpagcjaolannkpophkacklomagp
Descrição Reply to long emails point-by-point. Highlight text, press a button, and the quote shows up in your compose window.
Tamanho do Arquivo 27.42 KB
Contagem de Instalações 1,497
Versão Atual 0.0.12
Última Atualização 2022-01-10
Data de Publicação 2020-07-07
Classificação 4.89/5 Total de 9 Avaliações
Desenvolvedor Value Add
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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
}