Speech to Text for ChatGPT
Adds a speech to text microphone into the ChatGPT website.
Cos'è Speech to Text for ChatGPT?
Speech to Text for ChatGPT è un'estensione di Chrome sviluppata da zjdevelops, e la sua funzione principale è "Adds a speech to text microphone into the ChatGPT website.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Speech to Text for ChatGPT
Scarica i file di estensione Speech to Text for ChatGPT in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
🚀 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. Informazioni di Base sull'Estensione
| Nome | |
| ID | kplchkeabimhnpklakhhocnhegidpcel |
| URL Ufficiale | https://chromewebstore.google.com/detail/speech-to-text-for-chatgp/kplchkeabimhnpklakhhocnhegidpcel |
| Descrizione | Adds a speech to text microphone into the ChatGPT website. |
| Dimensione del File | 35.62 KB |
| Conteggio Installazioni | 120 |
| Versione Corrente | 0.0.4 |
| Ultimo Aggiornamento | 2023-08-07 |
| Data di Pubblicazione | 2023-07-12 |
| Sviluppatore | zjdevelops |
| [email protected] | |
| Tipo di Pagamento | free |
| URL della Pagina della Politica sulla Privacy | http://zubyj.github.io |
| Lingue Supportate | 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\/*"
]
}
]
} | |