Serial Speed Reader

A program that will serially display selected text word by word.

Что такое Serial Speed Reader?

Serial Speed Reader - это расширение Chrome, разработанное Sam Larison, и его основная функция - "A program that will serially display selected text word by word.".

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

screenshot
screenshot

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

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

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

                        This extension will display the selected text, word by word, so that you can read it without moving your eyeballs.  Not for the faint of heart, but you may adjust the delay between words and the per letter delay to slow down the text display.

You may have to refresh the page when you first install this extension to get it working.  

PLEASE report any bugs or problems.  This is BETA but I would appreciate it that you do not treat it like a finished product until it's done.  I will make improvements.

A unique icon is in the works, sorry about that!                    

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

Название Serial Speed Reader Serial Speed Reader
ID clmnbpnfedojoahgmdoohcbgclkcbofa
Официальный URL https://chromewebstore.google.com/detail/serial-speed-reader/clmnbpnfedojoahgmdoohcbgclkcbofa
Описание A program that will serially display selected text word by word.
Размер файла 144 KB
Количество установок 138
Текущая Версия 0.0.1.5
Последнее Обновление 2023-06-19
Дата публикации 2019-09-06
Рейтинг 3.17/5 Всего 6 оценок
Разработчик Sam Larison
Электронная почта [email protected]
Тип оплаты free
URL страницы помощи http://vidzbigger.com/index.php?v=contact&browserinfo=SerialSpeedReader%0D%0A%0D%0A&BugReportInfo=true
URL страницы политики конфиденциальности http://vidsbee.com/ColorPick/Privacy
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "description": "A program that will serially display selected text word by word.",
    "name": "Serial Speed Reader",
    "browser_action": {
        "default_icon": "icon19.png",
        "default_title": "Speed Reader",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "read.user.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "options_page": "options.html",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "64": "icon64.png",
        "128": "icon128.png"
    },
    "permissions": [
        "activeTab",
        ""
    ],
    "version": "0.0.1.5"
}