Batch Reply for GMail

Adds button to reply to all selected conversations on Gmail™.

Что такое Batch Reply for GMail?

Batch Reply for GMail - это расширение Chrome, разработанное mjbauer95, и его основная функция - "Adds button to reply to all selected conversations on Gmail™.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Batch Reply for GMail

Скачайте файлы расширений Batch Reply for GMail в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Adds a reply button to the UI of Gmail™ to allow users to reply to a set of emails with the same response.

Useful if you get many similar emails requiring the same response for each.                    

Основная информация о расширении

Название Batch Reply for GMail Batch Reply for GMail
ID jkeciloajjlchlmbjjogifpdkljppbei
Официальный URL https://chromewebstore.google.com/detail/batch-reply-for-gmail/jkeciloajjlchlmbjjogifpdkljppbei
Описание Adds button to reply to all selected conversations on Gmail™.
Размер файла 37.19 KB
Количество установок 11,565
Текущая Версия 7
Последнее Обновление 2015-05-28
Дата публикации 2015-05-28
Рейтинг 2.50/5 Всего 129 оценок
Разработчик mjbauer95
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Batch Reply for GMail",
    "description": "Adds button to reply to all selected conversations on Gmail\u2122.",
    "version": "7",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*",
                "https:\/\/inbox.google.com\/*"
            ],
            "js": [
                "inboxsdk.js",
                "reply.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "reply.png"
    ],
    "permissions": [
        "https:\/\/mail.google.com\/",
        "https:\/\/inbox.google.com\/"
    ],
    "manifest_version": 2
}