Speech to Text for ChatGPT
Adds a speech to text microphone into the ChatGPT website.
Co je Speech to Text for ChatGPT?
Speech to Text for ChatGPT je rozšíření Chrome vyvinuté zjdevelops, a jeho hlavní funkcí je „Adds a speech to text microphone into the ChatGPT website.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Speech to Text for ChatGPT
Stáhněte si soubory rozšíření Speech to Text for ChatGPT ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
🚀 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.
Základní Informace o Rozšíření
Název | Speech to Text for ChatGPT |
ID | kplchkeabimhnpklakhhocnhegidpcel |
Oficiální URL | https://chromewebstore.google.com/detail/speech-to-text-for-chatgp/kplchkeabimhnpklakhhocnhegidpcel |
Popis | Adds a speech to text microphone into the ChatGPT website. |
Velikost souboru | 35.62 KB |
Počet instalací | 120 |
Aktuální Verze | 0.0.4 |
Poslední Aktualizace | 2023-08-07 |
Datum Vydání | 2023-07-12 |
Vývojář | zjdevelops |
[email protected] | |
Typ Platby | free |
URL Stránky Zásad Ochrany Soukromí | http://zubyj.github.io |
Podporované Jazyky | 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\/*" ] } ] } |