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 με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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"
            ]
        }
    ]
}