Batch Reply for Gmail™

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

Qu'est-ce que Batch Reply for Gmail™ ?

Batch Reply for Gmail™ est une extension Chrome développée par Elad Nava, et sa fonction principale est "A chrome extension that makes it possible to reply to all selected conversations in Gmail™ at once.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Batch Reply for Gmail™

Téléchargez les fichiers d'extension Batch Reply for Gmail™ au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Batch Reply for Gmail™ Batch Reply for Gmail™
ID hclnmjfbjpemfjgcakmbpjkbclchmaig
URL Officiel https://chromewebstore.google.com/detail/batch-reply-for-gmail/hclnmjfbjpemfjgcakmbpjkbclchmaig
Description A chrome extension that makes it possible to reply to all selected conversations in Gmail™ at once.
Taille du Fichier 65.17 KB
Nombre d'Installations 10,329
Version Actuelle 1.1
Dernière Mise à Jour 2014-08-19
Date de Publication 2014-08-19
Évaluation 3.06/5 Total 33 Évaluations
Développeur Elad Nava
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
            ]
        }
    ]
}