MeetBot

Joins your google meets automatically!

Τι είναι το MeetBot;

Το MeetBot είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Keolailani Rose, και η κύρια λειτουργία του είναι "Joins your google meets automatically!".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης MeetBot

Λήψη αρχείων επέκτασης MeetBot σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

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

                        Spend less time focusing on keeping keeping your schedule and google meets in order, and focus on what matters. 

Simply enter the link and the start time of the meet, and have your computer join it automatically 2-3 minutes before the start time. The camera and microphone are turned off prior to joining, to prevent any invasion of privacy. The extension keeps track of the day, allowing you to enter your entire week's schedule all at once for future use. Eight meets are able to be entered per day. 

In the event that the google meet has not started, the extension will attempt to join again in about twenty seconds, and will keep doing this until it is able to successfully enter or if the page is closed by the user immediately after the extension opens it. 

User data is stored locally on the user's computer.

Google Meet is a trademark of Google Inc. Use of this trademark is subject to Google Permissions.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα MeetBot MeetBot
ID ggkbdnjmnmajplbjcjmgodpkhllgbpok
Επίσημο URL https://chromewebstore.google.com/detail/meetbot/ggkbdnjmnmajplbjcjmgodpkhllgbpok
Περιγραφή Joins your google meets automatically!
Μέγεθος Αρχείου 60.43 KB
Αριθμός Εγκαταστάσεων 205
Τρέχουσα Έκδοση 1.2
Τελευταία Ενημέρωση 2020-12-15
Ημερομηνία Δημοσίευσης 2020-12-02
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής Keolailani Rose
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/Keolai/Chrome-MeetBot
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "MeetBot",
    "version": "1.2",
    "description": "Joins your google meets automatically!",
    "icons": {
        "16": "icon16.png",
        "19": "icon19.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "author": "Keolailani Rose",
    "permissions": [
        "alarms",
        "tabs",
        "storage",
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_security_policy": "script-src 'self' http:\/\/localhost; object-src 'self'",
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_popup": "mainpage.html",
        "default_icon": "icon48.png"
    },
    "externally_connectable": {
        "ids": [
            "*"
        ],
        "matches": [
            "https:\/\/meet.google.com\/*"
        ],
        "accepts_tls_channel_id": false
    },
    "manifest_version": 2
}