Batch Reply for Gmail™

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

Vad är Batch Reply for Gmail™?

Batch Reply for Gmail™ är en Chrome-tillägg utvecklad av Elad Nava, och dess huvudfunktion är "A chrome extension that makes it possible to reply to all selected conversations in Gmail™ at once.".

Tilläggsskärmbilder

screenshot

Ladda ner Batch Reply for Gmail™-förlängningens CRX-fil

Ladda ner Batch Reply for Gmail™-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Batch Reply for Gmail™ Batch Reply for Gmail™
ID hclnmjfbjpemfjgcakmbpjkbclchmaig
Officiell webbadress https://chromewebstore.google.com/detail/batch-reply-for-gmail/hclnmjfbjpemfjgcakmbpjkbclchmaig
Beskrivning A chrome extension that makes it possible to reply to all selected conversations in Gmail™ at once.
Filstorlek 65.17 KB
Antal Installationer 10,329
Aktuell Version 1.1
Senast Uppdaterad 2014-08-19
Publiceringsdatum 2014-08-19
Betyg 3.06/5 Totalt 33 Betyg
Utvecklare Elad Nava
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
            ]
        }
    ]
}