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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } } |