Audio to Text for Whatsapp Web

Turn all received audios into text.

ما هو Audio to Text for Whatsapp Web؟

Audio to Text for Whatsapp Web هو إضافة Chrome تم تطويرها بواسطة opsJson، والميزة الرئيسية لها هي "Turn all received audios into text.".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Audio to Text for Whatsapp Web

قم بتنزيل ملفات الامتداد Audio to Text for Whatsapp Web بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة سياسة الخصوصية 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"
    ]
}