Google Meet Captions Capture

Capture Google Meet captions and save them to a file.

What is Google Meet Captions Capture?

Google Meet Captions Capture is a Chrome extension developed by Javier Ailbirt, and its main feature is "Capture Google Meet captions and save them to a file.".

Extension Screenshots

screenshot

Download Google Meet Captions Capture Extension CRX File

Download Google Meet Captions Capture extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Google Meet Captions Capture Google Meet Captions Capture
ID efldnnloljnpfjdonmnnhbnckmdmmaip
Official URL https://chromewebstore.google.com/detail/google-meet-captions-capt/efldnnloljnpfjdonmnnhbnckmdmmaip
Description Capture Google Meet captions and save them to a file.
File Size 1.05 MB
Installation Count 120
Current Version 1.3
Last Updated 2023-05-29
Publish Date 2023-05-19
Rating 4.14/5 Total 7 Ratings
Developer Javier Ailbirt
Email [email protected]
Payment Type free
Extension Website https://theeye.io
Help Page URL https://theeye.io
Supported Languages 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"
            ]
        }
    ]
}