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
电子邮箱 [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"
            ]
        }
    ]
}