Smarter Reply for Gmail
Create custom email responses for Gmail Smart Reply.
Wat is Smarter Reply for Gmail?
Smarter Reply for Gmail is een Chrome-extensie ontwikkeld door Jonathan Shobrook, en de belangrijkste functie is "Create custom email responses for Gmail Smart Reply.".
Extensie Screenshots
Download het CRX-bestand van de extensie Smarter Reply for Gmail
Download Smarter Reply for Gmail-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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. Basisinformatie over de Extensie
| Naam | |
| ID | mnclffmabpkinejmfajagggbmehcilgi |
| Officiële URL | https://chromewebstore.google.com/detail/smarter-reply-for-gmail/mnclffmabpkinejmfajagggbmehcilgi |
| Beschrijving | Create custom email responses for Gmail Smart Reply. |
| Bestandsgrootte | 1.42 MB |
| Aantal Installaties | 178 |
| Huidige Versie | 0.0.0.1 |
| Laatst Bijgewerkt | 2021-02-24 |
| Publicatiedatum | 2021-02-23 |
| Ontwikkelaar | Jonathan Shobrook |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://github.com/shobrook/smarterreply |
| Ondersteunde Talen | 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"
}
]
} | |