iRead4u

Reads (text to speech) the currently highlighted text on the screen (current tab)

Что такое iRead4u?

iRead4u - это расширение Chrome, разработанное deep4788, и его основная функция - "Reads (text to speech) the currently highlighted text on the screen (current tab)".

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

screenshot

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

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

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

                        Reads the currently highlighted text on the screen; converts highlighted text to speech.

Highlight the text you want to be read and do either of:
- Press [Alt+Shift+S] or
- Click on the extension's icon


Follow me on:
- Twitter: https://twitter.com/?lang=en
- GitHub: https://github.com/deep4788                    

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

Название iRead4u iRead4u
ID pkmbaacpdcnaaeeddokcpdahdokceppb
Официальный URL https://chromewebstore.google.com/detail/iread4u/pkmbaacpdcnaaeeddokcpdahdokceppb
Описание Reads (text to speech) the currently highlighted text on the screen (current tab)
Размер файла 214 KB
Количество установок 1,000
Текущая Версия 1.5.0
Последнее Обновление 2016-11-02
Дата публикации 2016-11-02
Рейтинг 2.00/5 Всего 12 оценок
Разработчик deep4788
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "iRead4u",
    "short_name": "iRead4u",
    "description": "Reads (text to speech) the currently highlighted text on the screen (current tab)",
    "version": "1.5.0",
    "manifest_version": 2,
    "author": "Deep Aggarwal ",
    "commands": {
        "read-highlighted": {
            "suggested_key": {
                "default": "Alt+Shift+S"
            },
            "description": "Reads highlighted text on the screen (current tab)"
        }
    },
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Read Highlighted Text"
    },
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png",
        "256": "icons\/icon256.png"
    }
}