Google Meet Captions Capture
Capture Google Meet captions and save them to a file.
Hvad er Google Meet Captions Capture?
Google Meet Captions Capture er en Chrome-udvidelse udviklet af Javier Ailbirt, og dens hovedfunktion er "Capture Google Meet captions and save them to a file.".
Udvidelsesskærmbilleder
Download Google Meet Captions Capture-udvidelses-CRX-fil
Download Google Meet Captions Capture-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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æggende oplysninger om udvidelsen
Navn | Google Meet Captions Capture |
ID | efldnnloljnpfjdonmnnhbnckmdmmaip |
Officiel URL | https://chromewebstore.google.com/detail/google-meet-captions-capt/efldnnloljnpfjdonmnnhbnckmdmmaip |
Beskrivelse | Capture Google Meet captions and save them to a file. |
Filstørrelse | 1.05 MB |
Antal Installationer | 120 |
Nuværende Version | 1.3 |
Senest Opdateret | 2023-05-29 |
Udgivelsesdato | 2023-05-19 |
Bedømmelse | 4.14/5 Samlet 7 Bedømmelser |
Udvikler | Javier Ailbirt |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://theeye.io |
Hjælpeside-URL | https://theeye.io |
Understøttede Sprog | 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" ] } ] } |