Reading Time

This extension shows the estimated reading time for a web page

什么是Reading Time?

Reading Time是由fendisha开发的Chrome扩展程序,该扩展的主要功能是“This extension shows the estimated reading time for a web page”。

扩展截图

screenshot
screenshot
screenshot
screenshot
screenshot

下载Reading Time扩展crx文件

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

扩展使用说明

                        A chrome extension that tells you how much time it takes to read a web page article

update
- fix breakage for the new youtube layout
- you can close the widget by clicking on it

description
- very fast calculation time using firefox readability library
- does not block rendering of the webpage as it is loaded after everything is done loading on the page
- works very well on webpage articles
- does not work well for other types of content
- can adjust the look of the widget to your liking
- it's open-source, you can contribute here github.com/usergit/read-time

privacy policy
- no data will be collected from this app
- strong privacy, does not send any of your data to any website
- no analytics or tracking of any sort                    

扩展基本信息

名称 Reading Time Reading Time
ID nccohhimobidpghgpnejnbkpoichbbml
官方URL https://chromewebstore.google.com/detail/reading-time/nccohhimobidpghgpnejnbkpoichbbml
简介 This extension shows the estimated reading time for a web page
文件大小 49.79 KB
安装次数 3,303
当前版本 1.1.1
更新时间 2018-02-20
上架时间 2018-02-20
评分 3.72/5 共25次评分
开发者 fendisha
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/usergit/read-time
帮助页面URL https://github.com/usergit/read-time
隐私政策页面URL https://github.com/usergit/read-time
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Reading Time",
    "short_name": "Reading Time",
    "description": "This extension shows the estimated reading time for a web page",
    "version": "1.1.1",
    "browser_action": {
        "default_popup": "popupPage\/popup.html",
        "default_title": "Reading Time"
    },
    "icons": {
        "16": "assets\/timereadicon16.png",
        "32": "assets\/timereadicon32.png",
        "48": "assets\/timereadicon48.png",
        "128": "assets\/timereadicon128.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "exclude_matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "extensionSettings.js",
                "readEstimator\/Readability.js",
                "readEstimator\/estimateTime.js",
                "readEstimator\/mainContentScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "assets\/*.*"
    ],
    "options_ui": {
        "page": "optionsPage\/options.html",
        "chrome_style": true
    }
}