Google Meet Captions Capture

Capture Google Meet captions and save them to a file.

Co to jest Google Meet Captions Capture?

Google Meet Captions Capture to rozszerzenie Chrome opracowane przez Javier Ailbirt, a jego główną funkcją jest „Capture Google Meet captions and save them to a file.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Google Meet Captions Capture

Pobierz pliki rozszerzeń Google Meet Captions Capture w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Google Meet Captions Capture Google Meet Captions Capture
ID efldnnloljnpfjdonmnnhbnckmdmmaip
Oficjalny URL https://chromewebstore.google.com/detail/google-meet-captions-capt/efldnnloljnpfjdonmnnhbnckmdmmaip
Opis Capture Google Meet captions and save them to a file.
Rozmiar pliku 1.05 MB
Liczba instalacji 120
Aktualna Wersja 1.3
Ostatnia Aktualizacja 2023-05-29
Data Publikacji 2023-05-19
Ocena 4.14/5 Łącznie 7 Oceny
Deweloper Javier Ailbirt
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://theeye.io
Adres URL Strony Pomocy https://theeye.io
Obsługiwane Języki 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"
            ]
        }
    ]
}