Speech to Text for ChatGPT
Adds a speech to text microphone into the ChatGPT website.
Что такое Speech to Text for ChatGPT?
Speech to Text for ChatGPT - это расширение Chrome, разработанное zjdevelops, и его основная функция - "Adds a speech to text microphone into the ChatGPT website.".
Снимки экрана расширения
Скачать файл CRX расширения Speech to Text for ChatGPT
Скачайте файлы расширений Speech to Text for ChatGPT в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
🚀 Keyboard Shortcuts
Ctrl+S: Turn on/off speech to text
Ctrl+U: Clear the text
Ctrl+W: Delete the last word
Cmd+ ⬇️ ⬆️ : Cycle message history. (Ctrl for Windows)
🚀 Free & Open Source
Join our open-source initiative on GitHub (github.com/zubyj/speech-to-text-for-chatgpt). For issues, suggestions, or questions, please open a ticket on Github. Основная информация о расширении
| Название | |
| ID | kplchkeabimhnpklakhhocnhegidpcel |
| Официальный URL | https://chromewebstore.google.com/detail/speech-to-text-for-chatgp/kplchkeabimhnpklakhhocnhegidpcel |
| Описание | Adds a speech to text microphone into the ChatGPT website. |
| Размер файла | 35.62 KB |
| Количество установок | 120 |
| Текущая Версия | 0.0.4 |
| Последнее Обновление | 2023-08-07 |
| Дата публикации | 2023-07-12 |
| Разработчик | zjdevelops |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| URL страницы политики конфиденциальности | http://zubyj.github.io |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Speech to Text for ChatGPT",
"version": "0.0.4",
"description": "Adds a speech to text microphone into the ChatGPT website.",
"icons": {
"16": "assets\/icons\/icon-16.png",
"32": "assets\/icons\/icon-32.png",
"48": "assets\/icons\/icon-48.png",
"128": "assets\/icons\/icon-128.png"
},
"permissions": [
"storage"
],
"content_scripts": [
{
"js": [
"content.js"
],
"matches": [
"https:\/\/chat.openai.com\/*"
]
}
],
"web_accessible_resources": [
{
"resources": [
"assets\/mic.png",
"assets\/mic-active.png",
"assets\/styles.css"
],
"matches": [
"https:\/\/chat.openai.com\/*"
]
}
]
} | |