Google Meet Captions Capture

Capture Google Meet captions and save them to a file.

Google Meet Captions Capture क्या है?

Google Meet Captions Capture Javier Ailbirt द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Capture Google Meet captions and save them to a file."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Google Meet Captions Capture एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
सहायता पृष्ठ URL 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"
            ]
        }
    ]
}