Simple Text To Speech

simple text-to-speech and text queue card readers for chrome

Что такое Simple Text To Speech?

Simple Text To Speech - это расширение Chrome, разработанное matrix.nad, и его основная функция - "simple text-to-speech and text queue card readers for chrome".

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

screenshot
screenshot
screenshot

Скачать файл CRX расширения Simple Text To Speech

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

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

                        a text-to-speech and queue card based reading tool for chrome. This
extension lets you right click highlighted text and use text to speech
in chrome browser.                    

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

Название Simple Text To Speech Simple Text To Speech
ID gpknfndlfloaiankeelecjfpoedodgcg
Официальный URL https://chrome.google.com/webstore/detail/simple-text-to-speech/gpknfndlfloaiankeelecjfpoedodgcg
Описание simple text-to-speech and text queue card readers for chrome
Размер файла 592 KB
Количество установок 600
Текущая Версия 1.5
Последнее Обновление 2017-12-22
Дата публикации 2017-12-22
Рейтинг 2.33/5 Всего 3 оценок
Разработчик matrix.nad
Электронная почта [email protected]
Тип оплаты free
URL страницы политики конфиденциальности https://infinitet3ch.com/simple-tts-policy
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Simple Text To Speech",
    "version": "1.5",
    "description": "simple text-to-speech and text queue card readers for chrome",
    "permissions": [
        "contextMenus",
        "storage",
        "tabs"
    ],
    "icons": {
        "16": "assets\/icons\/icon-16.png",
        "48": "assets\/icons\/icon-48.png",
        "128": "assets\/icons\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "scripts.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_page": "options.html"
}