Class Attendance (Google Meet)

Take class attendance

Class Attendance (Google Meet)คืออะไร?

Class Attendance (Google Meet) เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Gary Tan และคุณลักษณะหลักของมันคือ "Take class attendance"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Class Attendance (Google Meet)

ดาวน์โหลดไฟล์ส่วนขยาย Class Attendance (Google Meet) ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Reviews and ratings are highly appreciated ヾ(•ω•`).

Main function: 
1. Track classes
     • You can select classes you want to track.
     • You can track either present or absent students.
     • You can drag the tracking tab at any place you like.
     • The extension can save your tracking tab position at the 
       screen.
2. Share classes with your friends.
     • You can export classes that you've created that can be 
       inserted into quick input panel in your friend's extension. 
3. Sync your class in your google account.
     • Your class will be saved in your account so you can use it in    
       another computer.
4. You can change the theme of the google extension
     • Enhance your experience taking attendance with colorful 
       themes. It took me ages to make it work.

Future enhancements:
1. Database 
     • You can store attendance log in the extension.
2. Coffee for developer 
     • Enable me to accept tips through Google Pay.
3. Language 
     • I know three languages.

I hope my extension will come in handy
Have fun!🎉                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Class Attendance (Google Meet) Class Attendance (Google Meet)
ID mblgbgcibokiedfobncojjgmlmgnpach
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/class-attendance-google-m/mblgbgcibokiedfobncojjgmlmgnpach
คำอธิบาย Take class attendance
ขนาดไฟล์ 2.19 MB
จำนวนการติดตั้ง 185
เวอร์ชันปัจจุบัน 1.6.2
อัปเดตครั้งล่าสุด 2022-03-17
วันที่เผยแพร่ 2021-06-23
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Gary Tan
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Class Attendance (Google Meet)",
    "description": "Take class attendance",
    "version": "1.6.2",
    "author": "Gary Tan",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/meet.google.com\/*"
            ],
            "js": [
                "content_scripts\/content.js"
            ],
            "css": [
                "content_scripts\/style.css"
            ]
        }
    ],
    "action": {
        "default_popup": "popup\/popup.html",
        "default_icon": {
            "16": "\/images\/schedule_v2\/schedule16.png",
            "32": "\/images\/schedule_v2\/schedule32.png",
            "48": "\/images\/schedule_v2\/schedule48.png",
            "128": "\/images\/schedule_v2\/schedule128.png"
        }
    },
    "icons": {
        "16": "\/images\/schedule_v2\/schedule16.png",
        "32": "\/images\/schedule_v2\/schedule32.png",
        "48": "\/images\/schedule_v2\/schedule48.png",
        "128": "\/images\/schedule_v2\/schedule128.png"
    },
    "options_page": "options\/options.html"
}