Google Meet Captions Capture

Capture Google Meet captions and save them to a file.

Co je Google Meet Captions Capture?

Google Meet Captions Capture je rozšíření Chrome vyvinuté Javier Ailbirt, a jeho hlavní funkcí je „Capture Google Meet captions and save them to a file.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Google Meet Captions Capture

Stáhněte si soubory rozšíření Google Meet Captions Capture ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Google Meet Captions Capture Google Meet Captions Capture
ID efldnnloljnpfjdonmnnhbnckmdmmaip
Oficiální URL https://chromewebstore.google.com/detail/google-meet-captions-capt/efldnnloljnpfjdonmnnhbnckmdmmaip
Popis Capture Google Meet captions and save them to a file.
Velikost souboru 1.05 MB
Počet instalací 120
Aktuální Verze 1.3
Poslední Aktualizace 2023-05-29
Datum Vydání 2023-05-19
Hodnocení 4.14/5 Celkem 7 Hodnocení
Vývojář Javier Ailbirt
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://theeye.io
URL Stránky Nápovědy https://theeye.io
Podporované Jazyky 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"
            ]
        }
    ]
}