Blipread: page reading time

Page reading time in a minimal package.

什么是Blipread: page reading time?

Blipread: page reading time是由https://intenseminimalism.com开发的Chrome扩展程序,该扩展的主要功能是“Page reading time in a minimal package.”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Blipread: page reading time扩展crx文件

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

扩展使用说明

                        Blipread is a simple way to see how long it takes for you to read a page.
How much time do you have? Read now or later? Here's the answer.

This extension should work on Windows, Mac and Linux.

FEATURES
—
• displays in the toolbar the time in minutes to read the page
• your reading speed can be adjusted

HOW IT WORKS
—
This extension counts the number of words on the page, and using the reading speed provided estimates how long it will take for you to read the whole page. While it's likely there are more words on the page that aren't strictly content, it's still a useful indication once adjusted for your reading speed in words per minute.


REQUESTS AND BUGS
—
Please notify me here: https://github.com/folletto/Blipread/issues                    

扩展基本信息

名称 Blipread: page reading time Blipread: page reading time
ID pimmlmgpidiceckodhdifoppcidlndbp
官方URL https://chromewebstore.google.com/detail/blipread-page-reading-tim/pimmlmgpidiceckodhdifoppcidlndbp
简介 Page reading time in a minimal package.
文件大小 15.13 KB
安装次数 867
当前版本 1.0.5
更新时间 2023-12-28
上架时间 2019-11-14
评分 4.67/5 共9次评分
开发者 https://intenseminimalism.com
电子邮箱 [email protected]
付费类型 free
帮助页面URL https://github.com/folletto/Blipread/issues
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Blipread: page reading time",
    "short_name": "Blipread",
    "version": "1.0.5",
    "description": "Page reading time in a minimal package.",
    "author": "Erin Casali",
    "options_page": "options\/index.html",
    "icons": {
        "16": "icon\/icon16.png",
        "32": "icon\/icon32.png",
        "48": "icon\/icon48.png",
        "128": "icon\/icon128.png"
    },
    "action": {
        "default_title": "Minutes required for you to read this page"
    },
    "background": {
        "service_worker": "js\/service_worker.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "js": [
                "js\/content.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "tabs",
        "scripting",
        "storage"
    ],
    "host_permissions": [
        ""
    ]
}