Audio to Text for Whatsapp Web

Turn all received audios into text.

What is Audio to Text for Whatsapp Web?

Audio to Text for Whatsapp Web is a Chrome extension developed by opsJson, and its main feature is "Turn all received audios into text.".

Extension Screenshots

screenshot
screenshot

Download Audio to Text for Whatsapp Web Extension CRX File

Download Audio to Text for Whatsapp Web extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Audio to Text for Whatsapp Web Audio to Text for Whatsapp Web
ID knjcfhlcbbkgjfocddahfmhjongelpgk
Official URL https://chromewebstore.google.com/detail/audio-to-text-for-whatsap/knjcfhlcbbkgjfocddahfmhjongelpgk
Description Turn all received audios into text.
File Size 28.91 KB
Installation Count 648
Current Version 1.6.3
Last Updated 2024-02-26
Publish Date 2023-05-09
Rating 2.36/5 Total 11 Ratings
Developer opsJson
Email [email protected]
Payment Type free
Privacy Policy Page URL https://opsjson.com.br/audio_to_text.html
Supported Languages 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"
    ]
}