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