Batch Reply for Gmail™

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

Cos'è Batch Reply for Gmail™?

Batch Reply for Gmail™ è un'estensione di Chrome sviluppata da Elad Nava, e la sua funzione principale è "A chrome extension that makes it possible to reply to all selected conversations in Gmail™ at once.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Batch Reply for Gmail™

Scarica i file di estensione Batch Reply for Gmail™ in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Batch Reply for Gmail™ Batch Reply for Gmail™
ID hclnmjfbjpemfjgcakmbpjkbclchmaig
URL Ufficiale https://chromewebstore.google.com/detail/batch-reply-for-gmail/hclnmjfbjpemfjgcakmbpjkbclchmaig
Descrizione A chrome extension that makes it possible to reply to all selected conversations in Gmail™ at once.
Dimensione del File 65.17 KB
Conteggio Installazioni 10,329
Versione Corrente 1.1
Ultimo Aggiornamento 2014-08-19
Data di Pubblicazione 2014-08-19
Valutazione 3.06/5 Totale 33 Valutazioni
Sviluppatore Elad Nava
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
            ]
        }
    ]
}