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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Speech to Text for ChatGPT |
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\/*" ] } ] } |