Google Meet Captions Capture

Capture Google Meet captions and save them to a file.

Google Meet Captions Captureとは何ですか?

Google Meet Captions CaptureはJavier Ailbirtによって開発されたChromeの拡張機能で、その主な機能は「Capture Google Meet captions and save them to a file.」です。

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

screenshot

Google Meet Captions Capture拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        This plugin works with Google Meet captions. It grabs all the subtitles during a google meeting and allows you to download them. This way, you can summarize them using ChatGPT, BARD, or any other LLM chat tool.

For getting this app working you MUST OPEN GOOGLE MEET AND ENABLE CAPTIONS AT FIRST                    

拡張機能の基本情報

名前 Google Meet Captions Capture Google Meet Captions Capture
ID efldnnloljnpfjdonmnnhbnckmdmmaip
公式URL https://chromewebstore.google.com/detail/google-meet-captions-capt/efldnnloljnpfjdonmnnhbnckmdmmaip
説明 Capture Google Meet captions and save them to a file.
ファイルサイズ 1.05 MB
インストール数 120
現在のバージョン 1.3
最終更新日 2023-05-29
公開日 2023-05-19
評価 4.14/5 合計 7 レビュー
開発者 Javier Ailbirt
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://theeye.io
ヘルプページのURL https://theeye.io
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Google Meet Captions Capture",
    "version": "1.3",
    "description": "Capture Google Meet captions and save them to a file.",
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icon16.png",
            "48": "icon48.png",
            "128": "icon128.png"
        }
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.google.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}