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
Eメール [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
    }
}