Google Meet Captions Capture

Capture Google Meet captions and save them to a file.

ما هو Google Meet Captions Capture؟

Google Meet Captions Capture هو إضافة Chrome تم تطويرها بواسطة Javier Ailbirt، والميزة الرئيسية لها هي "Capture Google Meet captions and save them to a file.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Google Meet Captions Capture

قم بتنزيل ملفات الامتداد Google Meet Captions Capture بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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                    

معلومات أساسية عن التمديد

الاسم Google Meet Captions Capture Google Meet Captions Capture
ID efldnnloljnpfjdonmnnhbnckmdmmaip
عنوان URL الرسمي https://chromewebstore.google.com/detail/google-meet-captions-capt/efldnnloljnpfjdonmnnhbnckmdmmaip
الوصف Capture Google Meet captions and save them to a file.
حجم الملف 1.05 MB
عدد التثبيتات 120
النسخة الحالية 1.3
آخر تحديث 2023-05-29
تاريخ النشر 2023-05-19
تقييم 4.14/5 مجموع تقييمات 7
المطور Javier Ailbirt
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://theeye.io
عنوان صفحة المساعدة https://theeye.io
اللغات المدعومة 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"
            ]
        }
    ]
}