TalkGPT
Talk with chat GPT.
TalkGPTとは何ですか?
TalkGPTはadrianrieraによって開発されたChromeの拡張機能で、その主な機能は「Talk with chat GPT.」です。
拡張機能のスクリーンショット
TalkGPT拡張機能のCRXファイルをダウンロード
TalkGPT拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Convert your voice to text and automatically send it to chat GPT. When he has answered you, you will hear the text of his answer in the language in which you have configured your browser.
拡張機能の基本情報
名前 | TalkGPT |
ID | kcaoomfcilckbelgcbfpnfhcealidfkg |
公式URL | https://chromewebstore.google.com/detail/talkgpt/kcaoomfcilckbelgcbfpnfhcealidfkg |
説明 | Talk with chat GPT. |
ファイルサイズ | 76.53 KB |
インストール数 | 1,171 |
現在のバージョン | 1.0.1 |
最終更新日 | 2023-04-19 |
公開日 | 2023-04-04 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | adrianriera |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en,es |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "TalkGPT", "description": "__MSG_appDesc__", "default_locale": "en", "version": "1.0.1", "action": { "default_icon": "assets\/icon-r.png", "default_popup": "index.html" }, "permissions": [ "activeTab" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "js": [ "content-script.js" ] } ], "icons": { "128": "assets\/icon.png" } } |