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ファイルをダウンロード
Talking ChatGPT拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
Eメール | [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" } } |