Audio to Text for Whatsapp Web

Turn all received audios into text.

Hvad er Audio to Text for Whatsapp Web?

Audio to Text for Whatsapp Web er en Chrome-udvidelse udviklet af opsJson, og dens hovedfunktion er "Turn all received audios into text.".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Audio to Text for Whatsapp Web-udvidelses-CRX-fil

Download Audio to Text for Whatsapp Web-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Audio to Text for Whatsapp Web Audio to Text for Whatsapp Web
ID knjcfhlcbbkgjfocddahfmhjongelpgk
Officiel URL https://chromewebstore.google.com/detail/audio-to-text-for-whatsap/knjcfhlcbbkgjfocddahfmhjongelpgk
Beskrivelse Turn all received audios into text.
Filstørrelse 28.91 KB
Antal Installationer 648
Nuværende Version 1.6.3
Senest Opdateret 2024-02-26
Udgivelsesdato 2023-05-09
Bedømmelse 2.36/5 Samlet 11 Bedømmelser
Udvikler opsJson
E-mail [email protected]
Betalingsmetode free
URL til Fortrolighedspolitik Side https://opsjson.com.br/audio_to_text.html
Understøttede Sprog 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"
    ]
}