Batch Reply for Gmail™
A chrome extension that makes it possible to reply to all selected conversations in Gmail™ at once.
Что такое Batch Reply for Gmail™?
Batch Reply for Gmail™ - это расширение Chrome, разработанное Elad Nava, и его основная функция - "A chrome extension that makes it possible to reply to all selected conversations in Gmail™ at once.".
Снимки экрана расширения
Скачать файл CRX расширения Batch Reply for Gmail™
Скачайте файлы расширений Batch Reply for Gmail™ в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
                        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.                     Основная информация о расширении
| Название |   |  
| ID | hclnmjfbjpemfjgcakmbpjkbclchmaig | 
| Официальный URL | https://chromewebstore.google.com/detail/batch-reply-for-gmail/hclnmjfbjpemfjgcakmbpjkbclchmaig | 
| Описание | A chrome extension that makes it possible to reply to all selected conversations in Gmail™ at once. | 
| Размер файла | 65.17 KB | 
| Количество установок | 10,329 | 
| Текущая Версия | 1.1 | 
| Последнее Обновление | 2014-08-19 | 
| Дата публикации | 2014-08-19 | 
| Рейтинг | 3.06/5 Всего 33 оценок | 
| Разработчик | Elad Nava | 
| Электронная почта | [email protected] | 
| Тип оплаты | free | 
| Поддерживаемые языки | 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"
            ]
        }
    ]
}  |  |