GPT Vokal
Give voice instructions to ChatGPT.
GPT Vokalとは何ですか?
GPT VokalはNqedileによって開発されたChromeの拡張機能で、その主な機能は「Give voice instructions to ChatGPT.」です。
拡張機能のスクリーンショット
GPT Vokal拡張機能のCRXファイルをダウンロード
GPT Vokal拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension allows you to send voice prompts to ChatGPT instead of typing your requests. Install it, refresh the page, you should be able to see a mic icon next to the textarea of ChatGPT. If that doesn't work, open another tab and then back to the original ChatGPT tab and it should work fine.
拡張機能の基本情報
名前 | GPT Vokal |
ID | dhjabboeafgfmofgjiegaenmiikcdcpd |
公式URL | https://chromewebstore.google.com/detail/gpt-vokal/dhjabboeafgfmofgjiegaenmiikcdcpd |
説明 | Give voice instructions to ChatGPT. |
ファイルサイズ | 43.5 KB |
インストール数 | 39 |
現在のバージョン | 1.0.3 |
最終更新日 | 2023-07-17 |
公開日 | 2023-02-05 |
開発者 | Nqedile |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GPT Vokal", "description": "Give voice instructions to ChatGPT.", "version": "1.0.3", "manifest_version": 3, "icons": { "16": ".\/images\/icon16.png", "48": ".\/images\/icon48.png", "128": ".\/images\/icon128.png" }, "background": { "service_worker": ".\/background.js" }, "options_page": ".\/options.html", "action": { "default_popup": "popup.html" }, "permissions": [ "tabs", "scripting" ], "host_permissions": [ "https:\/\/chat.openai.com\/*" ], "content_scripts": [ { "js": [ "foreground.js" ], "matches": [ "https:\/\/chat.openai.com\/*" ] } ] } |