Gmail Summarization
Email summarization, read what's important.
¿Qué es Gmail Summarization?
Gmail Summarization es una extensión de Chrome desarrollada por http://summarly.com, y su función principal es "Email summarization, read what's important.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Gmail Summarization
Descarga archivos de extensión Gmail Summarization en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
An AI–powered reading assistant, that works for email conversations on Gmail, and helps to automatically summarize email threads and extract insights—highlighting important sentences and, suggesting #labels for categorizing emails. The idea, is to build an email summarizer that helps to automatically summarize email threads, by presenting a paragraph consisting of the most important sentences—these are the sentences that the user must read to get the main point of the email, where for many cases, reading the rest is unnecessary. ** privacy ** we don't store or share data with others, we respect people's data, like we do for our selfs. if you have any questions feel free to get in touch, we would love to get your feedback.
Información Básica de la Extensión
Nombre | |
ID | lemikfhgbognfmidedogimihofllajni |
URL Oficial | https://chrome.google.com/webstore/detail/gmail-summarization/lemikfhgbognfmidedogimihofllajni |
Descripción | Email summarization, read what's important. |
Tamaño del Archivo | 57.37 KB |
Cantidad de Instalaciones | 113 |
Versión Actual | 0.1.4 |
Última Actualización | 2019-11-16 |
Fecha de Publicación | 2019-11-16 |
Calificación | 4.00/5 Total de 1 Calificaciones |
Desarrollador | http://summarly.com |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://summarly.com |
URL de la Página de Ayuda | https://summarly.com/support/ |
URL de la Página de Política de Privacidad | http://summarly.ai/privacy |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Gmail Summarization", "description": "Email summarization, read what's important.", "version": "0.1.4", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*", "https:\/\/inbox.google.com\/*", "https:\/\/summarly-api.herokuapp.com\/*" ], "js": [ "js\/jquery.js", "inboxsdk.js", "content.js" ], "css": [ "styles.css" ], "run_at": "document_start" } ], "web_accessible_resources": [ "lines.png" ], "background": { "scripts": [ "js\/jquery.js", "background.js" ], "persistent": false }, "permissions": [ "https:\/\/mail.google.com\/", "https:\/\/inbox.google.com\/" ], "manifest_version": 2 } |