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によって開発されたChromeの拡張機能で、その主な機能は「Turn all received audios into text.」です。

拡張機能のスクリーンショット

screenshot
screenshot

Audio to Text for Whatsapp Web拡張機能のCRXファイルをダウンロード

Audio to Text for Whatsapp Web拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
    ]
}