Google Meet Captions Capture

Capture Google Meet captions and save them to a file.

Что такое Google Meet Captions Capture?

Google Meet Captions Capture - это расширение Chrome, разработанное Javier Ailbirt, и его основная функция - "Capture Google Meet captions and save them to a file.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Google Meet Captions Capture

Скачайте файлы расширений 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"
            ]
        }
    ]
}