ChatGPT Speechifier

This browser extension helps speak ChatGPT text responses out loud in different languages and different tonations

Что такое ChatGPT Speechifier?

ChatGPT Speechifier - это расширение Chrome, разработанное Obinna Iloeje, и его основная функция - "This browser extension helps speak ChatGPT text responses out loud in different languages and different tonations".

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

screenshot
screenshot
screenshot

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

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

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

                        This browser extension helps speak ChatGPT text responses out loud with different languages and different tonations.

*Features
- Change language and gender of speech voice
- Increase or decrease the rate or speed of the speech
- Increase or decrease the pitch of the speech voice                    

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

Название ChatGPT Speechifier ChatGPT Speechifier
ID jglaljacmohblhebclbfeeegdekoenae
Официальный URL https://chromewebstore.google.com/detail/chatgpt-speechifier/jglaljacmohblhebclbfeeegdekoenae
Описание This browser extension helps speak ChatGPT text responses out loud in different languages and different tonations
Размер файла 372 KB
Количество установок 27
Текущая Версия 1.0.0
Последнее Обновление 2023-06-06
Дата публикации 2023-05-14
Рейтинг 4.75/5 Всего 4 оценок
Разработчик Obinna Iloeje
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ChatGPT Speechifier",
    "version": "1.0.0",
    "description": "This browser extension helps speak ChatGPT text responses out loud in different languages and different tonations",
    "manifest_version": 3,
    "permissions": [
        "tts",
        "activeTab",
        "tabs",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "disabledPopup.html",
        "default_icon": "disabledIcon.png"
    },
    "icons": {
        "48": "icon-2.PNG",
        "128": "logo.PNG"
    }
}