summarize.me — Gmail Summarizer

A chrome extension that shortens long emails into concise summaries.

summarize.me — Gmail Summarizer란 무엇입니까?

summarize.me — Gmail Summarizer은(는) Adi Yeltay에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A chrome extension that shortens long emails into concise summaries."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

summarize.me — Gmail Summarizer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
            ]
        }
    ]
}