Smarter Reply for Gmail
Create custom email responses for Gmail Smart Reply.
Was ist Smarter Reply for Gmail?
Smarter Reply for Gmail ist eine Chrome-Erweiterung, die von Jonathan Shobrook entwickelt wurde, und ihr Hauptmerkmal ist "Create custom email responses for Gmail Smart Reply.".
Erweiterungsscreenshots
Smarter Reply for Gmail-Erweiterungs-CRX-Datei herunterladen
Laden Sie Smarter Reply for Gmail-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | mnclffmabpkinejmfajagggbmehcilgi |
| Offizielle URL | https://chromewebstore.google.com/detail/smarter-reply-for-gmail/mnclffmabpkinejmfajagggbmehcilgi |
| Beschreibung | Create custom email responses for Gmail Smart Reply. |
| Dateigröße | 1.42 MB |
| Installationsanzahl | 178 |
| Aktuelle Version | 0.0.0.1 |
| Letztes Update | 2021-02-24 |
| Veröffentlichungsdatum | 2021-02-23 |
| Entwickler | Jonathan Shobrook |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/shobrook/smarterreply |
| Unterstützte Sprachen | 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"
}
]
} | |