Audio to Text for Whatsapp Web
Turn all received audios into text.
Audio to Text for Whatsapp Web là gì?
Audio to Text for Whatsapp Web là một tiện ích mở rộng Chrome được phát triển bởi opsJson, và tính năng chính của nó là "Turn all received audios into text.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Audio to Text for Whatsapp Web
Tải xuống các tệp mở rộng Audio to Text for Whatsapp Web dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Audio to Text for Whatsapp Web |
ID | knjcfhlcbbkgjfocddahfmhjongelpgk |
URL Chính Thức | https://chromewebstore.google.com/detail/audio-to-text-for-whatsap/knjcfhlcbbkgjfocddahfmhjongelpgk |
Mô tả | Turn all received audios into text. |
Kích Thước Tệp | 28.91 KB |
Số Lần Cài Đặt | 648 |
Phiên Bản Hiện Tại | 1.6.3 |
Cập Nhật Lần Cuối | 2024-02-26 |
Ngày Phát Hành | 2023-05-09 |
Đánh Giá | 2.36/5 Tổng số 11 Đánh Giá |
Nhà Phát Triển | opsJson |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Chính Sách Bảo Mật | https://opsjson.com.br/audio_to_text.html |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |