Audio to Text for Whatsapp Web

Turn all received audios into text.

Was ist Audio to Text for Whatsapp Web?

Audio to Text for Whatsapp Web ist eine Chrome-Erweiterung, die von opsJson entwickelt wurde, und ihr Hauptmerkmal ist "Turn all received audios into text.".

Erweiterungsscreenshots

screenshot
screenshot

Audio to Text for Whatsapp Web-Erweiterungs-CRX-Datei herunterladen

Laden Sie Audio to Text for Whatsapp Web-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Audio to Text for Whatsapp Web Audio to Text for Whatsapp Web
ID knjcfhlcbbkgjfocddahfmhjongelpgk
Offizielle URL https://chromewebstore.google.com/detail/audio-to-text-for-whatsap/knjcfhlcbbkgjfocddahfmhjongelpgk
Beschreibung Turn all received audios into text.
Dateigröße 28.91 KB
Installationsanzahl 648
Aktuelle Version 1.6.3
Letztes Update 2024-02-26
Veröffentlichungsdatum 2023-05-09
Bewertung 2.36/5 Insgesamt 11 Bewertungen
Entwickler opsJson
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://opsjson.com.br/audio_to_text.html
Unterstützte Sprachen 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"
    ]
}