Speed Reader

Highlight text and read it through a speed-reader widget

¿Qué es Speed Reader?

Speed Reader es una extensión de Chrome desarrollada por keithmgould, y su función principal es "Highlight text and read it through a speed-reader widget".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Speed Reader

Descarga archivos de extensión Speed Reader en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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 :)                    

Información Básica de la Extensión

Nombre Speed Reader Speed Reader
ID lpjokkihnnennblbchdhmpkmapbdkinb
URL Oficial https://chrome.google.com/webstore/detail/speed-reader/lpjokkihnnennblbchdhmpkmapbdkinb
Descripción Highlight text and read it through a speed-reader widget
Tamaño del Archivo 119 KB
Cantidad de Instalaciones 62
Versión Actual 0.2
Última Actualización 2014-03-02
Fecha de Publicación 2014-03-02
Calificación 2.00/5 Total de 3 Calificaciones
Desarrollador keithmgould
Tipo de Pago free
Sitio Web de la Extensión https://github.com/keithmgould/speedreader-chrome-extension
URL de la Página de Ayuda https://github.com/keithmgould/speedreader-chrome-extension
Idiomas Soportados 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"
    ]
}