Smiley Reader For Speed Reading

Speed reading extension to increase your reading speed (beta).

Smiley Reader For Speed Readingとは何ですか?

Smiley Reader For Speed ReadingはWillem van Ketwichによって開発されたChromeの拡張機能で、その主な機能は「Speed reading extension to increase your reading speed (beta).」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

Smiley Reader For Speed Reading拡張機能のCRXファイルをダウンロード

Smiley Reader For Speed Reading拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Increase your reading speed and prevent reading regressions by using this app to guide your reading and keep a consistent pace. 

Reading regressions are when the same text is re-read by the reader to comprehend the text and are common when reading but are preventable by guiding your reading. Guided reading can increase reading speeds by up to 20 percent initially. 

With books a finger can be used to guide reading. With reading large amounts of text online, it is more difficult to use your finger to guide the text and so this extension is useful in helping guide your reading and measure your reading speed. 

On-screen graphs indicate to you how many words you are reading and how long it is taking as well as showing the number of words per minute read over time.

Two modes are available for reading - Arrow Image Guiding and Text Highlighting. Various options allow pauses after each line, stopping after a set time, and scrolling. An on-screen display gives the current reading time, word count and words per minute.

Highlight your text and right-click and select to read or start reading using a keyboard shortcut key combination. Press space to pause.

----------

Version 1.0.2 
- Added option to remove highlight of reading text
- Added ability to set percentage of screen that text is scrolled at (eg. 10% is near top of screen, 90% is near bottom of screen, default is 50% at middle)

Version 1.0.3
- Fixed issue with reading speed changing randomly due to anchors in the text

Version 1.0.4
- Fixed another issue with anchors
- Fixed display issue with popup showing NaN for WPM of 0

Version 1.0.6
- Fixed Popup size

Version 1.0.9
- Fixed various issues with text selection
- Added Smiley and Nyan guided reading awesomeness

Version 1.0.10
- Fixed z-index issue for guide arrows

Version 1.0.11
- Fixed text box size in options

Version 1.0.12
- Added grey-out background for more focused reading                    

拡張機能の基本情報

名前 Smiley Reader For Speed Reading Smiley Reader For Speed Reading
ID mpfhnefkmdllbflhfchfmcclhkididpe
公式URL https://chrome.google.com/webstore/detail/smiley-reader-for-speed-r/mpfhnefkmdllbflhfchfmcclhkididpe
説明 Speed reading extension to increase your reading speed (beta).
ファイルサイズ 181 KB
インストール数 162
現在のバージョン 1.0.12
最終更新日 2014-10-13
公開日 2014-10-13
評価 3.67/5 合計 12 レビュー
開発者 Willem van Ketwich
支払い方法 free
拡張機能のウェブサイト https://github.com/wilvk/SmileyReader
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Smiley Reader For Speed Reading",
    "version": "1.0.12",
    "description": "Speed reading extension to increase your reading speed (beta).",
    "permissions": [
        "tabs",
        "contextMenus"
    ],
    "web_accessible_resources": [
        "images\/arrowLeft.png",
        "images\/guideImages\/arrowUp.png",
        "images\/cross.png",
        "images\/guideImages\/smiley.png",
        "images\/guideImages\/nyan.png"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "libs\/jquery-2.1.1.min.js",
                "libs\/rangy-core.js",
                "libs\/rangy-serializer.js",
                "libs\/rangy-cssclassapplier.js",
                "libs\/raphael-min.js",
                "contentscript.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_page": "options.html",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_title": "Smiley Reader",
        "default_icon": "images\/icon.png",
        "default_popup": "popup.html",
        "run_at": "document_start"
    },
    "manifest_version": 2
}