Smiley Reader For Speed Reading

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

Co je Smiley Reader For Speed Reading?

Smiley Reader For Speed Reading je rozšíření Chrome vyvinuté Willem van Ketwich, a jeho hlavní funkcí je „Speed reading extension to increase your reading speed (beta).“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Smiley Reader For Speed Reading

Stáhněte si soubory rozšíření Smiley Reader For Speed Reading ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Smiley Reader For Speed Reading Smiley Reader For Speed Reading
ID mpfhnefkmdllbflhfchfmcclhkididpe
Oficiální URL https://chrome.google.com/webstore/detail/smiley-reader-for-speed-r/mpfhnefkmdllbflhfchfmcclhkididpe
Popis Speed reading extension to increase your reading speed (beta).
Velikost souboru 181 KB
Počet instalací 162
Aktuální Verze 1.0.12
Poslední Aktualizace 2014-10-13
Datum Vydání 2014-10-13
Hodnocení 3.67/5 Celkem 12 Hodnocení
Vývojář Willem van Ketwich
Typ Platby free
Webové stránky Rozšíření https://github.com/wilvk/SmileyReader
Podporované Jazyky 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
}