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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
    }
}