Reading Time

This extension shows the estimated reading time for a web page

Reading Time là gì?

Reading Time là một tiện ích mở rộng Chrome được phát triển bởi fendisha, và tính năng chính của nó là "This extension shows the estimated reading time for a web page".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Reading Time

Tải xuống các tệp mở rộng Reading Time dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Reading Time Reading Time
ID nccohhimobidpghgpnejnbkpoichbbml
URL Chính Thức https://chromewebstore.google.com/detail/reading-time/nccohhimobidpghgpnejnbkpoichbbml
Mô tả This extension shows the estimated reading time for a web page
Kích Thước Tệp 49.79 KB
Số Lần Cài Đặt 3,303
Phiên Bản Hiện Tại 1.1.1
Cập Nhật Lần Cuối 2018-02-20
Ngày Phát Hành 2018-02-20
Đánh Giá 3.72/5 Tổng số 25 Đánh Giá
Nhà Phát Triển fendisha
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/usergit/read-time
URL Trang Trợ Giúp https://github.com/usergit/read-time
URL Trang Chính Sách Bảo Mật https://github.com/usergit/read-time
Ngôn Ngữ Được Hỗ Trợ 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
    }
}