Google Meet Captions Capture

Capture Google Meet captions and save them to a file.

Apa itu Google Meet Captions Capture?

Google Meet Captions Capture adalah ekstensi Chrome yang dikembangkan oleh Javier Ailbirt, dan fitur utamanya adalah "Capture Google Meet captions and save them to a file.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Google Meet Captions Capture

Unduh file ekstensi Google Meet Captions Capture dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Google Meet Captions Capture Google Meet Captions Capture
ID efldnnloljnpfjdonmnnhbnckmdmmaip
URL Resmi https://chromewebstore.google.com/detail/google-meet-captions-capt/efldnnloljnpfjdonmnnhbnckmdmmaip
Deskripsi Capture Google Meet captions and save them to a file.
Ukuran File 1.05 MB
Jumlah Instalasi 120
Versi Saat Ini 1.3
Terakhir Diperbarui 2023-05-29
Tanggal Publikasi 2023-05-19
Penilaian 4.14/5 Total 7 Penilaian
Pengembang Javier Ailbirt
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://theeye.io
URL Halaman Bantuan https://theeye.io
Bahasa yang Didukung 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"
            ]
        }
    ]
}