Audio to Text for Whatsapp Web

Turn all received audios into text.

Cos'è Audio to Text for Whatsapp Web?

Audio to Text for Whatsapp Web è un'estensione di Chrome sviluppata da opsJson, e la sua funzione principale è "Turn all received audios into text.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Audio to Text for Whatsapp Web

Scarica i file di estensione Audio to Text for Whatsapp Web in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Audio to Text for Whatsapp Web Audio to Text for Whatsapp Web
ID knjcfhlcbbkgjfocddahfmhjongelpgk
URL Ufficiale https://chromewebstore.google.com/detail/audio-to-text-for-whatsap/knjcfhlcbbkgjfocddahfmhjongelpgk
Descrizione Turn all received audios into text.
Dimensione del File 28.91 KB
Conteggio Installazioni 648
Versione Corrente 1.6.3
Ultimo Aggiornamento 2024-02-26
Data di Pubblicazione 2023-05-09
Valutazione 2.36/5 Totale 11 Valutazioni
Sviluppatore opsJson
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://opsjson.com.br/audio_to_text.html
Lingue Supportate 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"
    ]
}