summarize.me — Gmail Summarizer

A chrome extension that shortens long emails into concise summaries.

Was ist summarize.me — Gmail Summarizer?

summarize.me — Gmail Summarizer ist eine Chrome-Erweiterung, die von Adi Yeltay entwickelt wurde, und ihr Hauptmerkmal ist "A chrome extension that shortens long emails into concise summaries.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

summarize.me — Gmail Summarizer-Erweiterungs-CRX-Datei herunterladen

Laden Sie summarize.me — Gmail Summarizer-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

                        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!                    

Grundlegende Informationen zur Erweiterung

Name summarize.me — Gmail Summarizer summarize.me — Gmail Summarizer
ID kgbcbbbcmkfnpebdllbppcofhmfeabol
Offizielle URL https://chromewebstore.google.com/detail/summarizeme-%E2%80%94-gmail-summa/kgbcbbbcmkfnpebdllbppcofhmfeabol
Beschreibung A chrome extension that shortens long emails into concise summaries.
Dateigröße 210 KB
Installationsanzahl 285
Aktuelle Version 1.0.0
Letztes Update 2022-08-09
Veröffentlichungsdatum 2022-07-12
Bewertung 4.20/5 Insgesamt 5 Bewertungen
Entwickler Adi Yeltay
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://summarizeme.vercel.app
URL der Datenschutzrichtlinien-Seite https://www.privacypolicygenerator.info/live.php?token=WpnJKcVoaeTkPYGFMseDYVxma11fUwVT
Unterstützte Sprachen 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"
            ]
        }
    ]
}