summarize.me — Gmail Summarizer

A chrome extension that shortens long emails into concise summaries.

¿Qué es summarize.me — Gmail Summarizer?

summarize.me — Gmail Summarizer es una extensión de Chrome desarrollada por Adi Yeltay, y su función principal es "A chrome extension that shortens long emails into concise summaries.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión summarize.me — Gmail Summarizer

Descarga archivos de extensión summarize.me — Gmail Summarizer 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

                        If you are tired of reading long and boring emails and missing important information in emails, use summarize.me!

How to use it? 
✓ Simply select the portion of the email that you want to shorten
✓ Go to the summarize.me extension button
✓ Click "Summarize" in the popup
✓ See the result inside the extension popup!

YouTube guide: https://youtu.be/_qI4VMpRPEE

[IMPORTANT NOTE]
- summarize.me extension currently supports only chromium-based browsers such as Chrome and Brave.
- summarize.me shortens emails based on extractive summarization principle! This means that the extension will not paraphrase or change the meaning of emails, but rather extracts key sentences from the given email.
- summarize.me works perfectly with English language. Unfortunately, the application doesn't work flawlessly with other languages.

[WHAT'S NEW?] Update 1.0.0
- Now, you are able to use the summarize.me features right inside the Gmail application with no need to open the extension popup constantly. To use this feature, simply open the extension once before you session, and enjoy this feature!                    

Información Básica de la Extensión

Nombre summarize.me — Gmail Summarizer summarize.me — Gmail Summarizer
ID kgbcbbbcmkfnpebdllbppcofhmfeabol
URL Oficial https://chromewebstore.google.com/detail/summarizeme-%E2%80%94-gmail-summa/kgbcbbbcmkfnpebdllbppcofhmfeabol
Descripción A chrome extension that shortens long emails into concise summaries.
Tamaño del Archivo 210 KB
Cantidad de Instalaciones 285
Versión Actual 1.0.0
Última Actualización 2022-08-09
Fecha de Publicación 2022-07-12
Calificación 4.20/5 Total de 5 Calificaciones
Desarrollador Adi Yeltay
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://summarizeme.vercel.app
URL de la Página de Política de Privacidad https://www.privacypolicygenerator.info/live.php?token=WpnJKcVoaeTkPYGFMseDYVxma11fUwVT
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "summarize.me \u2014 Gmail Summarizer",
    "version": "1.0.0",
    "description": "A chrome extension that shortens long emails into concise summaries.",
    "manifest_version": 3,
    "author": "Adi Yeltay",
    "permissions": [
        "storage",
        "activeTab",
        "scripting"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "index.html",
        "default_title": "summarize.me"
    },
    "icons": {
        "16": "summarizelogo.png",
        "48": "summarizelogo.png",
        "128": "summarizelogo.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/mail.google.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ]
}