Smarter Reply for Gmail
Create custom email responses for Gmail Smart Reply.
Что такое Smarter Reply for Gmail?
Smarter Reply for Gmail - это расширение Chrome, разработанное Jonathan Shobrook, и его основная функция - "Create custom email responses for Gmail Smart Reply.".
Снимки экрана расширения
Скачать файл CRX расширения Smarter Reply for Gmail
Скачайте файлы расширений Smarter Reply for Gmail в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Gmail has a feature called "Smart Reply," where users can select from a list of recommended responses when replying to an email. But Gmail doesn't allow you to create your own smart replies. Smarter Reply for Gmail is a Chrome extension which does let you create custom replies, and will learn to suggest the right reply for a given email.
Основная информация о расширении
Название | Smarter Reply for Gmail |
ID | mnclffmabpkinejmfajagggbmehcilgi |
Официальный URL | https://chromewebstore.google.com/detail/smarter-reply-for-gmail/mnclffmabpkinejmfajagggbmehcilgi |
Описание | Create custom email responses for Gmail Smart Reply. |
Размер файла | 1.42 MB |
Количество установок | 178 |
Текущая Версия | 0.0.0.1 |
Последнее Обновление | 2021-02-24 |
Дата публикации | 2021-02-23 |
Разработчик | Jonathan Shobrook |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/shobrook/smarterreply |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Smarter Reply for Gmail", "description": "Create custom email responses for Gmail Smart Reply.", "version": "0.0.0.1", "manifest_version": 2, "permissions": [ "storage", "tabs" ], "web_accessible_resources": [ "assets\/stopwords.json" ], "browser_action": { "default_title": "Smarter Reply for Gmail", "default_icon": "assets\/icon.png" }, "background": { "scripts": [ "extension\/background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/mail.google.com\/*", "https:\/\/mail.google.com\/*", "http:\/\/www.mail.google.com\/*", "https:\/\/www.mail.google.com\/*" ], "js": [ "extension\/content.js" ], "run_at": "document_end" } ] } |