Google Meet Captions Capture
Capture Google Meet captions and save them to a file.
Was ist Google Meet Captions Capture?
Google Meet Captions Capture ist eine Chrome-Erweiterung, die von Javier Ailbirt entwickelt wurde, und ihr Hauptmerkmal ist "Capture Google Meet captions and save them to a file.".
Erweiterungsscreenshots
Google Meet Captions Capture-Erweiterungs-CRX-Datei herunterladen
Laden Sie Google Meet Captions Capture-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Google Meet Captions Capture |
ID | efldnnloljnpfjdonmnnhbnckmdmmaip |
Offizielle URL | https://chromewebstore.google.com/detail/google-meet-captions-capt/efldnnloljnpfjdonmnnhbnckmdmmaip |
Beschreibung | Capture Google Meet captions and save them to a file. |
Dateigröße | 1.05 MB |
Installationsanzahl | 120 |
Aktuelle Version | 1.3 |
Letztes Update | 2023-05-29 |
Veröffentlichungsdatum | 2023-05-19 |
Bewertung | 4.14/5 Insgesamt 7 Bewertungen |
Entwickler | Javier Ailbirt |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://theeye.io |
Hilfeseite URL | https://theeye.io |
Unterstützte Sprachen | 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" ] } ] } |