GPT Vokal
Give voice instructions to ChatGPT.
GPT Vokalคืออะไร?
GPT Vokal เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Nqedile และคุณลักษณะหลักของมันคือ "Give voice instructions to ChatGPT."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GPT Vokal
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
อีเมล | [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\/*" ] } ] } |