Google Meet Captions Capture

Capture Google Meet captions and save them to a file.

O que é Google Meet Captions Capture?

Google Meet Captions Capture é uma extensão do Chrome desenvolvida por Javier Ailbirt, e sua principal característica é "Capture Google Meet captions and save them to a file.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Google Meet Captions Capture

Baixe arquivos de extensão Google Meet Captions Capture no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Google Meet Captions Capture Google Meet Captions Capture
ID efldnnloljnpfjdonmnnhbnckmdmmaip
URL Oficial https://chromewebstore.google.com/detail/google-meet-captions-capt/efldnnloljnpfjdonmnnhbnckmdmmaip
Descrição Capture Google Meet captions and save them to a file.
Tamanho do Arquivo 1.05 MB
Contagem de Instalações 120
Versão Atual 1.3
Última Atualização 2023-05-29
Data de Publicação 2023-05-19
Classificação 4.14/5 Total de 7 Avaliações
Desenvolvedor Javier Ailbirt
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://theeye.io
URL da Página de Ajuda https://theeye.io
Idiomas Suportados 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"
            ]
        }
    ]
}