Audio to Text for Whatsapp Web
Turn all received audios into text.
Apa itu Audio to Text for Whatsapp Web?
Audio to Text for Whatsapp Web adalah ekstensi Chrome yang dikembangkan oleh opsJson, dan fitur utamanya adalah "Turn all received audios into text.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Audio to Text for Whatsapp Web
Unduh file ekstensi Audio to Text for Whatsapp Web dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Audio to Text for Whatsapp Web |
ID | knjcfhlcbbkgjfocddahfmhjongelpgk |
URL Resmi | https://chromewebstore.google.com/detail/audio-to-text-for-whatsap/knjcfhlcbbkgjfocddahfmhjongelpgk |
Deskripsi | Turn all received audios into text. |
Ukuran File | 28.91 KB |
Jumlah Instalasi | 648 |
Versi Saat Ini | 1.6.3 |
Terakhir Diperbarui | 2024-02-26 |
Tanggal Publikasi | 2023-05-09 |
Penilaian | 2.36/5 Total 11 Penilaian |
Pengembang | opsJson |
[email protected] | |
Tipe Pembayaran | free |
URL Halaman Kebijakan Privasi | https://opsjson.com.br/audio_to_text.html |
Bahasa yang Didukung | 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" ] } |