Google Meet Captions Capture
Capture Google Meet captions and save them to a file.
Cos'è Google Meet Captions Capture?
Google Meet Captions Capture è un'estensione di Chrome sviluppata da Javier Ailbirt, e la sua funzione principale è "Capture Google Meet captions and save them to a file.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Google Meet Captions Capture
Scarica i file di estensione Google Meet Captions Capture in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Google Meet Captions Capture |
ID | efldnnloljnpfjdonmnnhbnckmdmmaip |
URL Ufficiale | https://chromewebstore.google.com/detail/google-meet-captions-capt/efldnnloljnpfjdonmnnhbnckmdmmaip |
Descrizione | Capture Google Meet captions and save them to a file. |
Dimensione del File | 1.05 MB |
Conteggio Installazioni | 120 |
Versione Corrente | 1.3 |
Ultimo Aggiornamento | 2023-05-29 |
Data di Pubblicazione | 2023-05-19 |
Valutazione | 4.14/5 Totale 7 Valutazioni |
Sviluppatore | Javier Ailbirt |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://theeye.io |
URL della Pagina di Aiuto | https://theeye.io |
Lingue Supportate | 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" ] } ] } |