ChatGPT Microphone
Add voice-to-text and shortcut snippets to ChatGPT.
ChatGPT Microphoneคืออะไร?
ChatGPT Microphone เป็นส่วนขยายของ Chrome ที่พัฒนาโดย David Venegas และคุณลักษณะหลักของมันคือ "Add voice-to-text and shortcut snippets to ChatGPT."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ChatGPT Microphone
ดาวน์โหลดไฟล์ส่วนขยาย ChatGPT Microphone ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
ChatGPT Microphone is open-source and features a seamlessly integrated voice-to-text microphone button and "Shortcut Snippets” which insert customizable text snippets in your conversations by just saying their keywords! Made for professionals who want to spend more time doing and less time typing. FEATURES: 🗣️ Voice-to-Text: Click the mic (or press CMD/CTR + M) and start speaking 📝 Shortcut Snippets: Quick-insert custom phrases into your conversations ⚙️ Custom Commands: Configure "clear text" or "send message" keywords ♾️ Always On Mode: "Look mom, no hands!" Converse without interruptions 🎨 Dark/Light Mode: It perfectly matches ChatGPT's Dark and Light mode DISCLAIMER: This extension is specifically designed for compatibility with Google Chrome. Due to limitations with the Speech Recognition API, it does not support other Chromium-based browsers, such as Brave, Opera, or Edge. CONTRIBUTE: This extension is open source! We welcome contributions - you can submit a pull request or report bugs and issues via the GitHub Issues page: https://github.com/davidmvenegas/chatgpt-microphone FEEDBACK: We value your feedback! 💌 Send your questions or suggestions to [email protected]. Let's make ChatGPT Microphone the best it can be together!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | ChatGPT Microphone |
ID | kpnejlajlhnpfphbhgfipmlogplmidin |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/chatgpt-microphone/kpnejlajlhnpfphbhgfipmlogplmidin |
คำอธิบาย | Add voice-to-text and shortcut snippets to ChatGPT. |
ขนาดไฟล์ | 196 KB |
จำนวนการติดตั้ง | 4,224 |
เวอร์ชันปัจจุบัน | 1.5.0 |
อัปเดตครั้งล่าสุด | 2024-02-21 |
วันที่เผยแพร่ | 2023-05-05 |
คะแนน | 4.53/5 รวมทั้งหมด 17 คะแนน |
ผู้พัฒนา | David Venegas |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://twitter.com/davidmvegas |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ChatGPT Microphone", "version": "1.5.0", "description": "Add voice-to-text and shortcut snippets to ChatGPT.", "icons": { "512": "\/assets\/icon512.png" }, "content_scripts": [ { "matches": [ "*:\/\/chat.openai.com\/*" ], "js": [ "contentScript.js" ] } ], "permissions": [ "storage" ], "action": { "default_popup": "\/menu\/menu.html", "default_icon": { "512": "\/assets\/icon512.png" } }, "background": { "service_worker": "background.js" } } |