Google Meet Captions Capture
Capture Google Meet captions and save them to a file.
Qu'est-ce que Google Meet Captions Capture ?
Google Meet Captions Capture est une extension Chrome développée par Javier Ailbirt, et sa fonction principale est "Capture Google Meet captions and save them to a file.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Google Meet Captions Capture
Téléchargez les fichiers d'extension Google Meet Captions Capture au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Google Meet Captions Capture |
ID | efldnnloljnpfjdonmnnhbnckmdmmaip |
URL Officiel | https://chromewebstore.google.com/detail/google-meet-captions-capt/efldnnloljnpfjdonmnnhbnckmdmmaip |
Description | Capture Google Meet captions and save them to a file. |
Taille du Fichier | 1.05 MB |
Nombre d'Installations | 120 |
Version Actuelle | 1.3 |
Dernière Mise à Jour | 2023-05-29 |
Date de Publication | 2023-05-19 |
Évaluation | 4.14/5 Total 7 Évaluations |
Développeur | Javier Ailbirt |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://theeye.io |
URL de la Page d'Aide | https://theeye.io |
Langues Prises en Charge | 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" ] } ] } |