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 |
| 官方網址 | 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\/*"
]
}
]
} | |