summarize.me — Gmail Summarizer

A chrome extension that shortens long emails into concise summaries.

summarize.me — Gmail Summarizer क्या है?

summarize.me — Gmail Summarizer Adi Yeltay द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A chrome extension that shortens long emails into concise summaries."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में summarize.me — Gmail Summarizer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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!                    

एक्सटेंशन की मूल जानकारी

नाम summarize.me — Gmail Summarizer summarize.me — Gmail Summarizer
ID kgbcbbbcmkfnpebdllbppcofhmfeabol
आधिकारिक URL https://chromewebstore.google.com/detail/summarizeme-%E2%80%94-gmail-summa/kgbcbbbcmkfnpebdllbppcofhmfeabol
विवरण A chrome extension that shortens long emails into concise summaries.
फ़ाइल का आकार 210 KB
स्थापना संख्या 285
वर्तमान संस्करण 1.0.0
अंतिम अपडेट 2022-08-09
प्रकाशन तिथि 2022-07-12
रेटिंग 4.20/5 कुल 5 रेटिंग्स
डेवलपर Adi Yeltay
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://summarizeme.vercel.app
गोपनीयता नीति पृष्ठ URL https://www.privacypolicygenerator.info/live.php?token=WpnJKcVoaeTkPYGFMseDYVxma11fUwVT
समर्थित भाषाएँ 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"
            ]
        }
    ]
}