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 |
官方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" } } |