Chat GPT voice
Make GPT chat talk and talk to it with voice
Chat GPT voiceとは何ですか?
Chat GPT voiceはlp177によって開発されたChromeの拡張機能で、その主な機能は「Make GPT chat talk and talk to it with voice」です。
拡張機能のスクリーンショット
Chat GPT voice拡張機能のCRXファイルをダウンロード
Chat GPT voice拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Adds the ability to interact with chatGPT with your voice thanks to multilingual TTS (text to speech) and STT (speech to text) features.
拡張機能の基本情報
名前 | Chat GPT voice |
ID | pjfkaiaapagfpadblmlhigdepafjdkmb |
公式URL | https://chromewebstore.google.com/detail/chat-gpt-voice/pjfkaiaapagfpadblmlhigdepafjdkmb |
説明 | Make GPT chat talk and talk to it with voice |
ファイルサイズ | 19.81 KB |
インストール数 | 133 |
現在のバージョン | 3.001.1028 |
最終更新日 | 2023-08-24 |
公開日 | 2023-08-14 |
評価 | 5.00/5 合計 3 レビュー |
開発者 | lp177 |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/lp177/Chat-GPT-voice |
ヘルプページのURL | https://github.com/lp177/Chat-GPT-voice/issues |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Chat GPT voice", "version": "3.001.1028", "description": "Make GPT chat talk and talk to it with voice", "options_page": "settings.html", "permissions": [ "storage", "tabs", "tts" ], "action": { "default_popup": "settings.html", "default_icon": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } }, "background": { "service_worker": "sw.js" }, "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "content_scripts": [ { "all_frames": false, "run_at": "document_end", "matches": [ "https:\/\/chat.openai.com\/*" ], "js": [ "integrations\/chat.openai.js" ], "css": [ "integrations\/chat.openai.css" ] } ] } |