Audio to Text for Whatsapp Web

Turn all received audios into text.

Wat is Audio to Text for Whatsapp Web?

Audio to Text for Whatsapp Web is een Chrome-extensie ontwikkeld door opsJson, en de belangrijkste functie is "Turn all received audios into text.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Audio to Text for Whatsapp Web

Download Audio to Text for Whatsapp Web-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Audio to Text for Whatsapp Web Audio to Text for Whatsapp Web
ID knjcfhlcbbkgjfocddahfmhjongelpgk
Officiële URL https://chromewebstore.google.com/detail/audio-to-text-for-whatsap/knjcfhlcbbkgjfocddahfmhjongelpgk
Beschrijving Turn all received audios into text.
Bestandsgrootte 28.91 KB
Aantal Installaties 648
Huidige Versie 1.6.3
Laatst Bijgewerkt 2024-02-26
Publicatiedatum 2023-05-09
Beoordeling 2.36/5 Totaal 11 Beoordelingen
Ontwikkelaar opsJson
E-mail [email protected]
Betalingswijze free
URL van de Privacybeleid Pagina https://opsjson.com.br/audio_to_text.html
Ondersteunde Talen 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"
    ]
}