Speed Reader

Highlight text and read it through a speed-reader widget

Speed Reader란 무엇입니까?

Speed Reader은(는) keithmgould에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Highlight text and read it through a speed-reader widget"입니다.

확장 프로그램 스크린샷

screenshot

Speed Reader 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Most (80%) of your reading time is used to physically move your eyeballs. This Chrome extension takes your block of selected text and presents it to you one word at a time. This eliminates eye movement, drastically speeding up your reading time.

In the screenshot, you can see how the extension works:
1) Select a block of text
2) Click on the 'eye' icon at the upper right hand corner of your browser
3) Set a speed (automatically saved for next time)
4) Hit Start
5) Read Very Quickly :)                    

확장 프로그램 기본 정보

이름 Speed Reader Speed Reader
ID lpjokkihnnennblbchdhmpkmapbdkinb
공식 URL https://chrome.google.com/webstore/detail/speed-reader/lpjokkihnnennblbchdhmpkmapbdkinb
설명 Highlight text and read it through a speed-reader widget
파일 크기 119 KB
설치 횟수 62
현재 버전 0.2
최근 업데이트 2014-03-02
출시 날짜 2014-03-02
평점 2.00/5 총 3 개의 평점
개발자 keithmgould
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/keithmgould/speedreader-chrome-extension
도움말 페이지 URL https://github.com/keithmgould/speedreader-chrome-extension
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Speed Reader",
    "description": "Highlight text and read it through a speed-reader widget",
    "version": "0.2",
    "browser_action": {
        "default_icon": "images\/eye16.png",
        "default_title": "Yay Speed Reader"
    },
    "icons": {
        "128": "images\/eye128.png",
        "48": "images\/eye48.png",
        "16": "images\/eye16.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "css\/jquery-ui-1.10.4.custom.min.css",
                "css\/speed_reader.css"
            ],
            "js": [
                "js\/jquery-2.1.0.min.js",
                "js\/jquery-ui-1.10.4.custom.min.js",
                "js\/speed_reader.js",
                "js\/content_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "notifications",
        "storage"
    ],
    "web_accessible_resources": [
        "css\/images\/*.png"
    ]
}