Speech to Text for ChatGPT
Adds a speech to text microphone into the ChatGPT website.
Was ist Speech to Text for ChatGPT?
Speech to Text for ChatGPT ist eine Chrome-Erweiterung, die von zjdevelops entwickelt wurde, und ihr Hauptmerkmal ist "Adds a speech to text microphone into the ChatGPT website.".
Erweiterungsscreenshots
Speech to Text for ChatGPT-Erweiterungs-CRX-Datei herunterladen
Laden Sie Speech to Text for ChatGPT-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
🚀 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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | kplchkeabimhnpklakhhocnhegidpcel |
| Offizielle URL | https://chromewebstore.google.com/detail/speech-to-text-for-chatgp/kplchkeabimhnpklakhhocnhegidpcel |
| Beschreibung | Adds a speech to text microphone into the ChatGPT website. |
| Dateigröße | 35.62 KB |
| Installationsanzahl | 120 |
| Aktuelle Version | 0.0.4 |
| Letztes Update | 2023-08-07 |
| Veröffentlichungsdatum | 2023-07-12 |
| Entwickler | zjdevelops |
| [email protected] | |
| Zahlungsart | free |
| URL der Datenschutzrichtlinien-Seite | http://zubyj.github.io |
| Unterstützte Sprachen | 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\/*"
]
}
]
} | |