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은(는) zjdevelops에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds a speech to text microphone into the ChatGPT website."입니다.
확장 프로그램 스크린샷
Speech to Text for ChatGPT 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
🚀 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\/*" ] } ] } |