Smiley Reader For Speed Reading

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

Was ist Smiley Reader For Speed Reading?

Smiley Reader For Speed Reading ist eine Chrome-Erweiterung, die von Willem van Ketwich entwickelt wurde, und ihr Hauptmerkmal ist "Speed reading extension to increase your reading speed (beta).".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Smiley Reader For Speed Reading-Erweiterungs-CRX-Datei herunterladen

Laden Sie Smiley Reader For Speed Reading-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Smiley Reader For Speed Reading Smiley Reader For Speed Reading
ID mpfhnefkmdllbflhfchfmcclhkididpe
Offizielle URL https://chrome.google.com/webstore/detail/smiley-reader-for-speed-r/mpfhnefkmdllbflhfchfmcclhkididpe
Beschreibung Speed reading extension to increase your reading speed (beta).
Dateigröße 181 KB
Installationsanzahl 162
Aktuelle Version 1.0.12
Letztes Update 2014-10-13
Veröffentlichungsdatum 2014-10-13
Bewertung 3.67/5 Insgesamt 12 Bewertungen
Entwickler Willem van Ketwich
Zahlungsart free
Erweiterungswebsite https://github.com/wilvk/SmileyReader
Unterstützte Sprachen 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
}