Google Meet Captions Capture

Capture Google Meet captions and save them to a file.

Vad är Google Meet Captions Capture?

Google Meet Captions Capture är en Chrome-tillägg utvecklad av Javier Ailbirt, och dess huvudfunktion är "Capture Google Meet captions and save them to a file.".

Tilläggsskärmbilder

screenshot

Ladda ner Google Meet Captions Capture-förlängningens CRX-fil

Ladda ner Google Meet Captions Capture-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Google Meet Captions Capture Google Meet Captions Capture
ID efldnnloljnpfjdonmnnhbnckmdmmaip
Officiell webbadress https://chromewebstore.google.com/detail/google-meet-captions-capt/efldnnloljnpfjdonmnnhbnckmdmmaip
Beskrivning Capture Google Meet captions and save them to a file.
Filstorlek 1.05 MB
Antal Installationer 120
Aktuell Version 1.3
Senast Uppdaterad 2023-05-29
Publiceringsdatum 2023-05-19
Betyg 4.14/5 Totalt 7 Betyg
Utvecklare Javier Ailbirt
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://theeye.io
Hjälpsida URL https://theeye.io
Stödda Språk 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"
            ]
        }
    ]
}