Google Meet Attendance List

Easiest way to save the attendance list for your meetings or lectures

Google Meet Attendance Listคืออะไร?

Google Meet Attendance List เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://meetlist.io และคุณลักษณะหลักของมันคือ "Easiest way to save the attendance list for your meetings or lectures"

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

screenshot
screenshot

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

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

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

                        Google Meet Attendance List

Save attendants automatically. No button press needed.

The simplest way to save the attendance list for your meetings or lectures. From teachers to business professionals, this extension is intended to create a simple way to have all the meeting attendees on a list.

What does it offers:
★ automatically generated attendance list 
★ possibility to manually save the attendance
★ saved data contains First Seen At and Time In Call for each participant
★ date included in the name of the file, for easy reference
★ dashboard to see meetings history
★ Google Meet elegant UI integration (controls are integrated inside the Google meeting UI for easy access)
★ CSV export for easy integration with Google Classroom or Drive (just drag & drop)

Everything is stored locally, the data belongs to you and it never leaves your device.                    

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

ชื่อ Google Meet Attendance List Google Meet Attendance List
ID appcnhiefcidclcdjeahgklghghihfok
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/google-meet-attendance-li/appcnhiefcidclcdjeahgklghghihfok
คำอธิบาย Easiest way to save the attendance list for your meetings or lectures
ขนาดไฟล์ 1.93 MB
จำนวนการติดตั้ง 408,939
เวอร์ชันปัจจุบัน 4.4.0
อัปเดตครั้งล่าสุด 2024-02-11
วันที่เผยแพร่ 2020-10-14
คะแนน 4.69/5 รวมทั้งหมด 1768 คะแนน
ผู้พัฒนา https://meetlist.io
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://meetlist.io
URL หน้านโยบายความเป็นส่วนตัว https://meetlist.io/privacy-policy
ภาษาที่รองรับ de,en,fr,tr,es,it,pt-PT,ro,ru,uk
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "4.4.0",
    "author": "Alex M",
    "name": "__MSG_name__",
    "short_name": "__MSG_short_name__",
    "description": "__MSG_description__",
    "default_locale": "en",
    "background": {
        "service_worker": "background.js"
    },
    "options_page": "options.html",
    "action": {
        "default_icon": {
            "16": "icons\/logo-16.png",
            "24": "icons\/logo-24.png",
            "32": "icons\/logo-32.png",
            "48": "icons\/logo-48.png"
        },
        "default_popup": "popup.html",
        "default_title": "__MSG_name__"
    },
    "content_scripts": [
        {
            "js": [
                "browser-polyfill.js",
                "content.js"
            ],
            "matches": [
                "*:\/\/meet.google.com\/*-*-*"
            ],
            "run_at": "document_idle",
            "all_frames": false
        },
        {
            "js": [
                "sync.js"
            ],
            "matches": [
                "*:\/\/*.meetlist.io\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "shims.js",
                "icons\/logo-24.png"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'; script-src-elem 'self'"
    },
    "icons": {
        "16": "icons\/logo-16.png",
        "32": "icons\/logo-32.png",
        "48": "icons\/logo-48.png",
        "64": "icons\/logo-64.png",
        "128": "icons\/logo-128.png"
    },
    "permissions": [
        "tabs",
        "webRequest",
        "storage",
        "unlimitedStorage"
    ],
    "host_permissions": [
        "*:\/\/*.meetlist.io\/*",
        "*:\/\/api.meetlist.io\/*"
    ]
}