Audio to Text for Whatsapp Web

Turn all received audios into text.

Audio to Text for Whatsapp Web क्या है?

Audio to Text for Whatsapp Web opsJson द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Turn all received audios into text."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Audio to Text for Whatsapp Web एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Audio to Text for Whatsapp Web Audio to Text for Whatsapp Web
ID knjcfhlcbbkgjfocddahfmhjongelpgk
आधिकारिक URL https://chromewebstore.google.com/detail/audio-to-text-for-whatsap/knjcfhlcbbkgjfocddahfmhjongelpgk
विवरण Turn all received audios into text.
फ़ाइल का आकार 28.91 KB
स्थापना संख्या 648
वर्तमान संस्करण 1.6.3
अंतिम अपडेट 2024-02-26
प्रकाशन तिथि 2023-05-09
रेटिंग 2.36/5 कुल 11 रेटिंग्स
डेवलपर opsJson
ईमेल [email protected]
भुगतान के प्रकार free
गोपनीयता नीति पृष्ठ URL https://opsjson.com.br/audio_to_text.html
समर्थित भाषाएँ 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"
    ]
}