Audio to Text for Whatsapp Web
Turn all received audios into text.
Audio to Text for Whatsapp Webคืออะไร?
Audio to Text for Whatsapp Web เป็นส่วนขยายของ Chrome ที่พัฒนาโดย opsJson และคุณลักษณะหลักของมันคือ "Turn all received audios into text."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Audio to Text for Whatsapp Web
ดาวน์โหลดไฟล์ส่วนขยาย Audio to Text for Whatsapp Web ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Generate transcripts of all audio messages automatically! No more losing patience looking for information in audio messages. This extension detects new incoming or outgoing audio messages on your Whatsapp Web, downloads the content, sends it to OpenAI's Whisper API, and receives a transcript, which is then placed under the corresponding audio message.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Audio to Text for Whatsapp Web |
ID | knjcfhlcbbkgjfocddahfmhjongelpgk |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/audio-to-text-for-whatsap/knjcfhlcbbkgjfocddahfmhjongelpgk |
คำอธิบาย | Turn all received audios into text. |
ขนาดไฟล์ | 28.91 KB |
จำนวนการติดตั้ง | 648 |
เวอร์ชันปัจจุบัน | 1.6.3 |
อัปเดตครั้งล่าสุด | 2024-02-26 |
วันที่เผยแพร่ | 2023-05-09 |
คะแนน | 2.36/5 รวมทั้งหมด 11 คะแนน |
ผู้พัฒนา | opsJson |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
URL หน้านโยบายความเป็นส่วนตัว | https://opsjson.com.br/audio_to_text.html |
ภาษาที่รองรับ | en,pt-BR |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Audio to Text for Whatsapp Web", "version": "1.6.3", "description": "__MSG_appDesc__", "default_locale": "en", "icons": { "128": ".\/icons\/128.png", "16": ".\/icons\/16.png", "38": ".\/icons\/38.png", "64": ".\/icons\/64.png" }, "action": { "default_popup": "popup.html", "default_title": "Audio to Text for Whatsapp Web" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "js": [ "injector.js" ], "matches": [ "https:\/\/web.whatsapp.com\/*" ] } ], "web_accessible_resources": [ { "matches": [ "https:\/\/web.whatsapp.com\/*" ], "resources": [ "script.js" ] } ], "permissions": [ "storage", "tabs" ] } |