Google Meet Captions Capture
Capture Google Meet captions and save them to a file.
¿Qué es Google Meet Captions Capture?
Google Meet Captions Capture es una extensión de Chrome desarrollada por Javier Ailbirt, y su función principal es "Capture Google Meet captions and save them to a file.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Google Meet Captions Capture
Descarga archivos de extensión Google Meet Captions Capture en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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
Información Básica de la Extensión
Nombre | Google Meet Captions Capture |
ID | efldnnloljnpfjdonmnnhbnckmdmmaip |
URL Oficial | https://chromewebstore.google.com/detail/google-meet-captions-capt/efldnnloljnpfjdonmnnhbnckmdmmaip |
Descripción | Capture Google Meet captions and save them to a file. |
Tamaño del Archivo | 1.05 MB |
Cantidad de Instalaciones | 120 |
Versión Actual | 1.3 |
Última Actualización | 2023-05-29 |
Fecha de Publicación | 2023-05-19 |
Calificación | 4.14/5 Total de 7 Calificaciones |
Desarrollador | Javier Ailbirt |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://theeye.io |
URL de la Página de Ayuda | https://theeye.io |
Idiomas Soportados | 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" ] } ] } |