ChatGPT Microphone
Add voice-to-text and shortcut snippets to ChatGPT.
什麼是ChatGPT Microphone?
ChatGPT Microphone是由David Venegas開發的Chrome擴展程式,該擴展的主要功能是“Add voice-to-text and shortcut snippets to ChatGPT.”。
擴展截圖
下載ChatGPT Microphone擴展crx文件
下載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 |
官方網址 | 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" } } |