Email reading time for Gmail

Medium's like reading time estimation for your Gmail.

什么是Email reading time for Gmail?

Email reading time for Gmail是由http://summarly.com开发的Chrome扩展程序,该扩展的主要功能是“Medium's like reading time estimation for your Gmail.”。

扩展截图

screenshot
screenshot

下载Email reading time for Gmail扩展crx文件

下载Email reading time for Gmail扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        It helps you estimate how long an email will take to read.  Calculation is based on the average adult reading speed that around 200 words per minute (wpm). Estimated email reading time increases productivity, by prioritizing what to read. 

Features

+ We help you by adding the read-time estimation at the end of your email subject, before you send your email
+ We show read-time estimation, on any email in your inbox–displayed under the email subject

Change-log

+ Version 0.1.3 – Show read-time, when you click to read an email.

Privacy
We don't store or process any data server–side, everything is processed on the client-browser.

If you have any problems or feedback, write to us at [email protected]                    

扩展基本信息

名称 Email reading time for Gmail Email reading time for Gmail
ID mmfmecanbhgllpfbgndhhhdjkamihekp
官方URL https://chrome.google.com/webstore/detail/email-reading-time-for-gm/mmfmecanbhgllpfbgndhhhdjkamihekp
简介 Medium's like reading time estimation for your Gmail.
文件大小 137 KB
安装次数 311
当前版本 0.1.3
更新时间 2019-11-06
上架时间 2019-11-05
评分 5.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": "Email reading time for Gmail",
    "description": "Medium's like reading time estimation for your Gmail.",
    "version": "0.1.3",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*",
                "https:\/\/inbox.google.com\/*"
            ],
            "js": [
                "inboxsdk.js",
                "content.js",
                "js\/jquery.js",
                "js\/compromise.min.js"
            ],
            "css": [
                "styles.css"
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_icon": "time.png"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "web_accessible_resources": [
        "time.png",
        "icon16.png"
    ],
    "permissions": [
        "https:\/\/mail.google.com\/",
        "https:\/\/inbox.google.com\/"
    ],
    "manifest_version": 2
}