Gmail Summarization

Email summarization, read what's important.

Gmail Summarization란 무엇입니까?

Gmail Summarization은(는) http://summarly.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Email summarization, read what's important."입니다.

확장 프로그램 스크린샷

screenshot

Gmail Summarization 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Gmail Summarization Gmail Summarization
ID lemikfhgbognfmidedogimihofllajni
공식 URL https://chrome.google.com/webstore/detail/gmail-summarization/lemikfhgbognfmidedogimihofllajni
설명 Email summarization, read what's important.
파일 크기 57.37 KB
설치 횟수 113
현재 버전 0.1.4
최근 업데이트 2019-11-16
출시 날짜 2019-11-16
평점 4.00/5 총 1 개의 평점
개발자 http://summarly.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://summarly.com
도움말 페이지 URL https://summarly.com/support/
개인정보 보호 정책 페이지 URL http://summarly.ai/privacy
지원되는 언어 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
}