Speechy

Wrapper for Paid High Quality Text-to-Speech (TTS) APIs such as Google and OpenAI. To use this extension, you need your API key.

Что такое Speechy?

Speechy - это расширение Chrome, разработанное hmirin, и его основная функция - "Wrapper for Paid High Quality Text-to-Speech (TTS) APIs such as Google and OpenAI. To use this extension, you need your API key.".

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

screenshot

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

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

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

                        Wrapper for Paid High Quality Text-to-Speech (TTS) APIs like Google's Wavenet and OpenAI TTS. To use this extension, you need your API key.

- Supported APIs 
   - Google Cloud Text-to-Speech API (includes WaveNet voices)
   - OpenAI Text-to-Speech API

- Feature
   - Read selected text
   - Choose voice
   - Change voice speed (Only for Google)                    

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

Название Speechy Speechy
ID flpjdaabfegkkifhogoilelmjcipihnp
Официальный URL https://chromewebstore.google.com/detail/speechy/flpjdaabfegkkifhogoilelmjcipihnp
Описание Wrapper for Paid High Quality Text-to-Speech (TTS) APIs such as Google and OpenAI. To use this extension, you need your API key.
Размер файла 465 KB
Количество установок 739
Текущая Версия 0.2.1
Последнее Обновление 2024-02-22
Дата публикации 2018-07-19
Рейтинг 3.92/5 Всего 12 оценок
Разработчик hmirin
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://hmirin.github.io/speechy/
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Speechy",
    "version": "0.2.1",
    "description": "Wrapper for Paid High Quality Text-to-Speech (TTS) APIs such as Google and OpenAI. To use this extension, you need your API key.",
    "permissions": [
        "activeTab",
        "contextMenus",
        "storage",
        "scripting",
        "notifications"
    ],
    "host_permissions": [
        "https:\/\/api.openai.com\/v1\/audio\/speech",
        "https:\/\/texttospeech.googleapis.com\/v1beta1\/text:synthesize?key=*"
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/play_audio.js"
            ]
        }
    ],
    "action": {
        "default_icon": "images\/icon128.png",
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "images\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "commands": {
        "read_the_selected_text": {
            "suggested_key": {
                "default": "Ctrl+Shift+1"
            },
            "description": "Read the selected text in Speechy",
            "global": true
        }
    },
    "icons": {
        "128": "images\/icon128.png",
        "16": "images\/icon16.png"
    }
}