Talking ChatGPT
Convert your speech into text so you can have a real conversation with (a talking) ChatGPT.
Talking ChatGPT란 무엇입니까?
Talking ChatGPT은(는) Tobias Scharl에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Convert your speech into text so you can have a real conversation with (a talking) ChatGPT."입니다.
확장 프로그램 스크린샷
Talking ChatGPT 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension is ideal for anyone who needs to quickly and efficiently convert spoken words into written text. With the 62 different language and dialect options, you can easily choose your preferred language and accent for transcription. Whether you're speaking in English, Spanish, French, German, or any other language, ChatGPT Speech-to-Text will accurately transcribe your words with the appropriate dialect. With the new speech to text functionality, you can now have a talking ChatGPT! The extension will now read out the responses off ChatGPT, at least if you want to. This project is also available on Github: https://github.com/0xBitBuster/talking-chatgpt-extension
확장 프로그램 기본 정보
이름 | Talking ChatGPT |
ID | dppbeenbobngogcdfnocicajiegcofmo |
공식 URL | https://chromewebstore.google.com/detail/talking-chatgpt/dppbeenbobngogcdfnocicajiegcofmo |
설명 | Convert your speech into text so you can have a real conversation with (a talking) ChatGPT. |
파일 크기 | 20.67 KB |
설치 횟수 | 354 |
현재 버전 | 2.3 |
최근 업데이트 | 2024-03-06 |
출시 날짜 | 2023-04-03 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | Tobias Scharl |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "2.3", "manifest_version": 3, "name": "Talking ChatGPT", "description": "Convert your speech into text so you can have a real conversation with (a talking) ChatGPT.", "permissions": [ "storage" ], "background": { "service_worker": "js\/service_worker.js" }, "content_scripts": [ { "matches": [ "*:\/\/chat.openai.com\/*" ], "js": [ "js\/content-script.js" ] } ], "web_accessible_resources": [ { "resources": [ "js\/chatgpt-stt.js" ], "matches": [ "*:\/\/chat.openai.com\/*" ] } ], "action": { "default_popup": "popup\/popup.html" }, "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } } |