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. 扩展基本信息
| 名称 | |
| 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 |
| 电子邮箱 | [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\/*"
]
}
]
} | |