Google Meet Captions Capture
Capture Google Meet captions and save them to a file.
Wat is Google Meet Captions Capture?
Google Meet Captions Capture is een Chrome-extensie ontwikkeld door Javier Ailbirt, en de belangrijkste functie is "Capture Google Meet captions and save them to a file.".
Extensie Screenshots
Download het CRX-bestand van de extensie Google Meet Captions Capture
Download Google Meet Captions Capture-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | Google Meet Captions Capture |
ID | efldnnloljnpfjdonmnnhbnckmdmmaip |
Officiële URL | https://chromewebstore.google.com/detail/google-meet-captions-capt/efldnnloljnpfjdonmnnhbnckmdmmaip |
Beschrijving | Capture Google Meet captions and save them to a file. |
Bestandsgrootte | 1.05 MB |
Aantal Installaties | 120 |
Huidige Versie | 1.3 |
Laatst Bijgewerkt | 2023-05-29 |
Publicatiedatum | 2023-05-19 |
Beoordeling | 4.14/5 Totaal 7 Beoordelingen |
Ontwikkelaar | Javier Ailbirt |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://theeye.io |
Help Pagina-URL | https://theeye.io |
Ondersteunde Talen | 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" ] } ] } |