Fast Attendance
Take attendance from Google Meet with the click of a button! Integrated with times + days of the week - enter once, and you're done!
Τι είναι το Fast Attendance;
Το Fast Attendance είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον endothermic.dragon, και η κύρια λειτουργία του είναι "Take attendance from Google Meet with the click of a button! Integrated with times + days of the week - enter once, and you're done!".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Fast Attendance
Λήψη αρχείων επέκτασης Fast Attendance σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
----- Version 0.0.0.2 Update ----- This extension has been updated to function accordingly with the new Google Meet UI. The extension's functionality is no longer limited to 49 participants - it is now capable of getting all the participant names, without user interaction to change any layouts. Credit to Grégoire Geis - https://gist.github.com/71/7296ec9d44af7d0f1fb36b053bbe2219. ----- Description ----- Having trouble taking attendance? Frustrated that you have to take it every single day manually during class? This extension lets you take attendance in Google Meet with the click of a button! Everything is integrated with times and days of the week, so you don't have to re-enter names, and everything syncs automatically. Why is this better than any other extension, you ask? Well, this extension allows you to have a different schedule for each day of the week. Everything rotates from one time to the next during the day, and one day to the next throughout the week. Set it up once, and you're done! After installation, click the extension logo to edit your days and schedule. From here, you can copy all the student names and times from one day to another if need be, or you can manually add classes and times. When in a Google Meet, just click the button at the top of your screen that says "Fast Attendance", and you can see who is present, who is absent, and who is not recognized from the attendance list and Google Meet. The extension will do the work for you by taking the appropriate list of students, based on the current day of the week and time of the day, and comparing it to the list of students in the Google Meet. Note that no data is sent anywhere - it is confidential to devices with your google account logged in only. Uploading students from Google Classroom is not implemented yet, but possibility for the future! Questions? Concerns? Bugs? Feature requests? Feel free to email me at [email protected]!
Βασικές Πληροφορίες Επέκτασης
Όνομα | Fast Attendance |
ID | pddjapkopnopnopijbpnickgdfjclabg |
Επίσημο URL | https://chromewebstore.google.com/detail/fast-attendance/pddjapkopnopnopijbpnickgdfjclabg |
Περιγραφή | Take attendance from Google Meet with the click of a button! Integrated with times + days of the week - enter once, and you're done! |
Μέγεθος Αρχείου | 23.19 KB |
Αριθμός Εγκαταστάσεων | 274 |
Τρέχουσα Έκδοση | 0.0.0.2 beta |
Τελευταία Ενημέρωση | 2021-07-02 |
Ημερομηνία Δημοσίευσης | 2020-12-23 |
Αξιολόγηση | 4.00/5 Συνολικά 1 Αξιολογήσεις |
Προγραμματιστής | endothermic.dragon |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Fast Attendance", "short_name": "Fast Attendance", "description": "Take attendance from Google Meet with the click of a button! Integrated with times + days of the week - enter once, and you're done!", "version": "0.0.0.2", "version_name": "0.0.0.2 beta", "permissions": [ "storage", "unlimitedStorage" ], "icons": { "16": "Images\/icon-16px.png", "19": "Images\/icon-19px.png", "38": "Images\/icon-38px.png", "48": "Images\/icon-48px.png", "128": "Images\/icon-128px.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/meet.google.com\/*-*-*" ], "js": [ "inject.js" ] } ], "browser_action": { "default_popup": "popup.html" } } |