Google Meet Attendance Management

You can check the Google Meet attendance of users who are going to attend in the Google Calendar.

Τι είναι το Google Meet Attendance Management;

Το Google Meet Attendance Management είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://shijimi.work, και η κύρια λειτουργία του είναι "You can check the Google Meet attendance of users who are going to attend in the Google Calendar.".

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

screenshot

Λήψη αρχείου CRX της επέκτασης Google Meet Attendance Management

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

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

                        You can check the Google Meet attendance of users who are going to attend in the Google Calendar.
As a result, it will be possible to quickly confirm the attendance of users and improve the efficiency of meetings.

How To Use

1. Please click the icon of Google Meet Attendance Management on Google Meet.
2. Please click the "Sign in with Google" button for checking Google Calendar participants and currently participating users, and display the results
※If you have already started Google Meet during installing this extension, you need to reload Google Meet to take effect.
※The result is not displayed because Google authentication is required for the first time. 
Please click the button again.
※There is a time lag in the reaction at the first time.

このツールにより、googleカレンダーに登録したGooge Meetの参加予定者の出欠管理を行うことができます。
これにより、即座に出席中のユーザを確認することができ、作業の効率化につながるでしょう。


使い方
1. Google Meet内で、拡張機能のアイコンをクリックします
2. Sign in with Googleボタンをクリックすると、Google Calendarの参加予定者と現在参加しているユーザの名前を照会し、結果を表示します
※初回はGoogle認証が必要のため、結果が表示されません。再度ボタンをクリックしてください。

github
https://github.com/shoot16625/Google-Meet-Attendance-Management

HomePage
https://app.shijimi.work                    

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

Όνομα Google Meet Attendance Management Google Meet Attendance Management
ID gcjjaejjfoiaojgcenhjnbmmnphkojhd
Επίσημο URL https://chromewebstore.google.com/detail/google-meet-attendance-ma/gcjjaejjfoiaojgcenhjnbmmnphkojhd
Περιγραφή You can check the Google Meet attendance of users who are going to attend in the Google Calendar.
Μέγεθος Αρχείου 70.97 KB
Αριθμός Εγκαταστάσεων 8,000
Τρέχουσα Έκδοση 1.07
Τελευταία Ενημέρωση 2022-04-28
Ημερομηνία Δημοσίευσης 2020-07-08
Αξιολόγηση 3.83/5 Συνολικά 6 Αξιολογήσεις
Προγραμματιστής https://shijimi.work
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://app.shijimi.work
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/shoot16625/Google-Meet-Attendance-Management
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Google Meet Attendance Management",
    "short_name": "GMAM",
    "version": "1.07",
    "description": "You can check the Google Meet attendance of users who are going to attend in the Google Calendar.",
    "manifest_version": 3,
    "author": "shoot16625",
    "permissions": [
        "activeTab",
        "declarativeContent",
        "identity"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "js": [
                "jquery3.5.1.min.js",
                "content.js"
            ]
        }
    ],
    "oauth2": {
        "client_id": "74315233846-a5m1jtm39t04a5rhbh18mocvkimfgacv.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/calendar.events.readonly"
        ]
    },
    "action": {
        "default_popup": "popup.html",
        "default_title": "Google Meet Attendance Management",
        "default_icon": {
            "32": "images\/memo32.png"
        }
    },
    "icons": {
        "16": "images\/memo16.png",
        "48": "images\/memo48.png",
        "64": "images\/memo64.png",
        "128": "images\/memo128.png",
        "256": "images\/memo256.png",
        "512": "images\/memo512.png"
    }
}