Attendance for Google Meet™

Records Google Meet™ attendance and exports to Google Sheets™.

ما هو Attendance for Google Meet™؟

Attendance for Google Meet™ هو إضافة Chrome تم تطويرها بواسطة Tyler and Adit، والميزة الرئيسية لها هي "Records Google Meet™ attendance and exports to Google Sheets™.".

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

screenshot
screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Attendance for Google Meet™

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

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

                        Are you a teacher who has had trouble taking attendance in this new virtual environment? Have you run into trouble trying to keep track of students coming in and out of Google Meets?

If this is you, then you have come to the right extension! Taking attendance on Google Meet can be a cumbersome process, so we have made everything simple for you. With Attendance for Google Meet, recording attendance is as easy as a few clicks.

This extension supports a variety of unique features:
- an intuitive user interface that integrates seamlessly with the Google Meet UI
- allows the user to create and store multiple class lists
- presents a list of the students with intuitive symbols that show whether they are present, absent, previously present but left (e.g. due to technical difficulties), or present but not on your attendance list
- easy editing of students in a class
- one-click export to Google Sheets

Our automatically generated spreadsheets have separate sheets for each of your classes. Once you hit export, the extension updates the sheet corresponding to your class with the latest attendance data, complete with the Meet code, date, time, and a row for each student. Each student entry contains the following information:
- name
- whether they were present or not
- the time they joined
- the time they left
- the amount of times they joined
- the total duration during which they were in the call

Our extension is secure and does not invade the user’s data or student information
(source code can be found at https://github.com/tytot/attendance-for-google-meet#attendance-for-google-meet).

If you have any questions, please contact the developers at [email protected].                    

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

الاسم Attendance for Google Meet™ Attendance for Google Meet™
ID gioogehddfnceeihfoeencjbhggblkkd
عنوان URL الرسمي https://chromewebstore.google.com/detail/attendance-for-google-mee/gioogehddfnceeihfoeencjbhggblkkd
الوصف Records Google Meet™ attendance and exports to Google Sheets™.
حجم الملف 3.56 MB
عدد التثبيتات 33,464
النسخة الحالية 2.4.0
آخر تحديث 2023-04-03
تاريخ النشر 2020-09-04
تقييم 4.01/5 مجموع تقييمات 69
المطور Tyler and Adit
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://www.facebook.com/groups/668942347360787/
عنوان صفحة المساعدة https://www.facebook.com/groups/668942347360787/
عنوان صفحة سياسة الخصوصية https://github.com/tytot/attendance-for-google-meet
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Attendance for Google Meet\u2122",
    "version": "2.4.0",
    "description": "Records Google Meet\u2122 attendance and exports to Google Sheets\u2122.",
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAgu3DFNTJ4W9qEZwA4GjeTn4kj0dXRooOfJdu6BAv041ZWGAx6Nowcj7cd9K4JfCzOGlNpMkXaWX8pXQD004n7oeg2AKqbgO7cKo2EDgLKYKDy+Uq\/Mjb\/bS8sQaa6kzTVhP8tJg19\/DR01EJ0\/Y8\/\/2I6OnnhskWMhIZNt2bUGQTG9Pk\/i5cRcGNcW1pkv6quTU+n49lU969guaRyK8ER5BUBn1qLzv6g61LDubtYkWAuxkx7KEBUtByGpAeh\/xk7aQtuSEEBjhagwfL+aXYRVeecH732gRWzP9yepE8ZHJYNdMfsSq2Pg\/KSgj83KO2rZhxGI0RgsIJPOMThh5+hwIDAQAB",
    "web_accessible_resources": [
        {
            "resources": [
                "fonts\/*",
                "img\/icons\/drive.png",
                "js\/attendance.js",
                "js\/utils.js",
                "js\/inject.js"
            ],
            "matches": [
                "*:\/\/meet.google.com\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "loader.js"
    },
    "action": {
        "default_popup": "html\/popup.html",
        "default_icon": {
            "16": "img\/icons\/icon16.png",
            "32": "img\/icons\/icon32.png",
            "48": "img\/icons\/icon48.png",
            "128": "img\/icons\/icon128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/meet.google.com\/**-**-**"
            ],
            "css": [
                "css\/material-components.min.css",
                "css\/style.css"
            ],
            "js": [
                "js\/material-components.min.js",
                "js\/utils.js",
                "js\/content.js",
                "js\/chipset-textfield.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "identity",
        "tabs",
        "notifications",
        "scripting"
    ],
    "host_permissions": [
        "*:\/\/meet.google.com\/**-**-**"
    ],
    "oauth2": {
        "client_id": "871492450441-lutkcelegqrntqt4dt106ios3ghtrqlb.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/drive.file"
        ]
    },
    "icons": {
        "16": "img\/icons\/icon16.png",
        "32": "img\/icons\/icon32.png",
        "48": "img\/icons\/icon48.png",
        "128": "img\/icons\/icon128.png"
    },
    "manifest_version": 3
}