Audio to Text for Whatsapp Web
Turn all received audios into text.
Co to jest Audio to Text for Whatsapp Web?
Audio to Text for Whatsapp Web to rozszerzenie Chrome opracowane przez opsJson, a jego główną funkcją jest „Turn all received audios into text.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Audio to Text for Whatsapp Web
Pobierz pliki rozszerzeń Audio to Text for Whatsapp Web w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Audio to Text for Whatsapp Web |
ID | knjcfhlcbbkgjfocddahfmhjongelpgk |
Oficjalny URL | https://chromewebstore.google.com/detail/audio-to-text-for-whatsap/knjcfhlcbbkgjfocddahfmhjongelpgk |
Opis | Turn all received audios into text. |
Rozmiar pliku | 28.91 KB |
Liczba instalacji | 648 |
Aktualna Wersja | 1.6.3 |
Ostatnia Aktualizacja | 2024-02-26 |
Data Publikacji | 2023-05-09 |
Ocena | 2.36/5 Łącznie 11 Oceny |
Deweloper | opsJson |
[email protected] | |
Typ Płatności | free |
Adres URL Strony Polityki Prywatności | https://opsjson.com.br/audio_to_text.html |
Obsługiwane Języki | 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" ] } |