Smarter Reply for Gmail
Create custom email responses for Gmail Smart Reply.
Cos'è Smarter Reply for Gmail?
Smarter Reply for Gmail è un'estensione di Chrome sviluppata da Jonathan Shobrook, e la sua funzione principale è "Create custom email responses for Gmail Smart Reply.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Smarter Reply for Gmail
Scarica i file di estensione Smarter Reply for Gmail in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | mnclffmabpkinejmfajagggbmehcilgi |
| URL Ufficiale | https://chromewebstore.google.com/detail/smarter-reply-for-gmail/mnclffmabpkinejmfajagggbmehcilgi |
| Descrizione | Create custom email responses for Gmail Smart Reply. |
| Dimensione del File | 1.42 MB |
| Conteggio Installazioni | 178 |
| Versione Corrente | 0.0.0.1 |
| Ultimo Aggiornamento | 2021-02-24 |
| Data di Pubblicazione | 2021-02-23 |
| Sviluppatore | Jonathan Shobrook |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/shobrook/smarterreply |
| Lingue Supportate | 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"
}
]
} | |