Smiley Reader For Speed Reading

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

O que é Smiley Reader For Speed Reading?

Smiley Reader For Speed Reading é uma extensão do Chrome desenvolvida por Willem van Ketwich, e sua principal característica é "Speed reading extension to increase your reading speed (beta).".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Smiley Reader For Speed Reading

Baixe arquivos de extensão Smiley Reader For Speed Reading no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Smiley Reader For Speed Reading Smiley Reader For Speed Reading
ID mpfhnefkmdllbflhfchfmcclhkididpe
URL Oficial https://chrome.google.com/webstore/detail/smiley-reader-for-speed-r/mpfhnefkmdllbflhfchfmcclhkididpe
Descrição Speed reading extension to increase your reading speed (beta).
Tamanho do Arquivo 181 KB
Contagem de Instalações 162
Versão Atual 1.0.12
Última Atualização 2014-10-13
Data de Publicação 2014-10-13
Classificação 3.67/5 Total de 12 Avaliações
Desenvolvedor Willem van Ketwich
Tipo de Pagamento free
Site da Extensão https://github.com/wilvk/SmileyReader
Idiomas Suportados 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
}