Audio to Text for Whatsapp Web
Turn all received audios into text.
Co je Audio to Text for Whatsapp Web?
Audio to Text for Whatsapp Web je rozšíření Chrome vyvinuté opsJson, a jeho hlavní funkcí je „Turn all received audios into text.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Audio to Text for Whatsapp Web
Stáhněte si soubory rozšíření Audio to Text for Whatsapp Web ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Audio to Text for Whatsapp Web |
ID | knjcfhlcbbkgjfocddahfmhjongelpgk |
Oficiální URL | https://chromewebstore.google.com/detail/audio-to-text-for-whatsap/knjcfhlcbbkgjfocddahfmhjongelpgk |
Popis | Turn all received audios into text. |
Velikost souboru | 28.91 KB |
Počet instalací | 648 |
Aktuální Verze | 1.6.3 |
Poslední Aktualizace | 2024-02-26 |
Datum Vydání | 2023-05-09 |
Hodnocení | 2.36/5 Celkem 11 Hodnocení |
Vývojář | opsJson |
[email protected] | |
Typ Platby | free |
URL Stránky Zásad Ochrany Soukromí | https://opsjson.com.br/audio_to_text.html |
Podporované Jazyky | 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" ] } |