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文件

下載Gmail Summarization擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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
}