Batch Reply for Gmail™

A chrome extension that makes it possible to reply to all selected conversations in Gmail™ at once.

O que é Batch Reply for Gmail™?

Batch Reply for Gmail™ é uma extensão do Chrome desenvolvida por Elad Nava, e sua principal característica é "A chrome extension that makes it possible to reply to all selected conversations in Gmail™ at once.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Batch Reply for Gmail™

Baixe arquivos de extensão Batch Reply for Gmail™ 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

                        Simply go to https://mail.google.com/, select conversations you want to reply to, and click the "Reply" button at the top of the screen!

This extension is open-source.
https://github.com/eladnava/batch-reply-for-gmail

Gmail™ is a registered trademark of Google. This extension is unaffiliated with Google.                    

Informações Básicas da Extensão

Nome Batch Reply for Gmail™ Batch Reply for Gmail™
ID hclnmjfbjpemfjgcakmbpjkbclchmaig
URL Oficial https://chromewebstore.google.com/detail/batch-reply-for-gmail/hclnmjfbjpemfjgcakmbpjkbclchmaig
Descrição A chrome extension that makes it possible to reply to all selected conversations in Gmail™ at once.
Tamanho do Arquivo 65.17 KB
Contagem de Instalações 10,329
Versão Atual 1.1
Última Atualização 2014-08-19
Data de Publicação 2014-08-19
Classificação 3.06/5 Total de 33 Avaliações
Desenvolvedor Elad Nava
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Batch Reply for Gmail\u2122",
    "description": "A chrome extension that makes it possible to reply to all selected conversations in Gmail\u2122 at once.",
    "manifest_version": 2,
    "version": "1.1",
    "icons": {
        "16": "assets\/img\/icon16.png",
        "48": "assets\/img\/icon48.png",
        "128": "assets\/img\/icon128.png"
    },
    "permissions": [
        "webNavigation"
    ],
    "background": {
        "scripts": [
            "assets\/js\/background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "js": [
                "assets\/js\/jquery.js",
                "assets\/js\/content.js"
            ]
        }
    ]
}