Speed Reader

Highlight text and read it through a speed-reader widget

Что такое Speed Reader?

Speed Reader - это расширение Chrome, разработанное keithmgould, и его основная функция - "Highlight text and read it through a speed-reader widget".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Speed Reader

Скачайте файлы расширений Speed Reader в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

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

Основная информация о расширении

Название Speed Reader Speed Reader
ID lpjokkihnnennblbchdhmpkmapbdkinb
Официальный URL https://chrome.google.com/webstore/detail/speed-reader/lpjokkihnnennblbchdhmpkmapbdkinb
Описание Highlight text and read it through a speed-reader widget
Размер файла 119 KB
Количество установок 62
Текущая Версия 0.2
Последнее Обновление 2014-03-02
Дата публикации 2014-03-02
Рейтинг 2.00/5 Всего 3 оценок
Разработчик keithmgould
Тип оплаты free
Официальный сайт расширения https://github.com/keithmgould/speedreader-chrome-extension
URL страницы помощи https://github.com/keithmgould/speedreader-chrome-extension
Поддерживаемые языки 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"
    ]
}