Google Meet Attendance (Works with New UI)

Simple Chrome Extension to record single time, time-wise attendance of members and will download to csv file.

什麼是Google Meet Attendance (Works with New UI)?

Google Meet Attendance (Works with New UI)是由Clipboard Manager開發的Chrome擴展程式,該擴展的主要功能是“Simple Chrome Extension to record single time, time-wise attendance of members and will download to csv file.”。

擴展截圖

screenshot
screenshot
screenshot

下載Google Meet Attendance (Works with New UI)擴展crx文件

下載Google Meet Attendance (Works with New UI)擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        With this chrome extension 

1. Download list of attendees present in meet session at particular time.
2. Record the Time-wise attendance manually and download in CSV/Excel formats.
3. You can create aliases to modify names  before downloading the list. 

New Feature coming soon to help teacher and student to interact fast. 
2.1.2 
>> Code optimization and minor bug fixing 

2.1.1 
>> UI Improvement
>> Meeting reminder feature added

2.1.0 - Bug fix                    

擴展基本資訊

名稱 Google Meet Attendance (Works with New UI) Google Meet Attendance (Works with New UI)
ID hjjeaaibilndjeabckakaknlcbblcmbc
官方網址 https://chrome.google.com/webstore/detail/google-meet-attendance-wo/hjjeaaibilndjeabckakaknlcbblcmbc
簡介 Simple Chrome Extension to record single time, time-wise attendance of members and will download to csv file.
檔案大小 514 KB
安裝次數 100,000
目前版本 2.1.2
更新時間 2022-07-02
上架時間 2020-06-04
評分 4.37/5 共 116 次評分
開發者 Clipboard Manager
電子郵箱 [email protected]
付費類型 free
隱私政策頁面URL https://unscart.com/clipboard-privacy-policy
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Google Meet Attendance (Works with New UI)",
    "description": "Simple Chrome Extension to record single time, time-wise attendance of members and will download to csv file.",
    "permissions": [
        "tabs",
        "storage",
        "declarativeContent"
    ],
    "version": "2.1.2",
    "author": "p2pdops",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "js": [
                "libs\/xlsx.full.min.js",
                "attendance\/utils.js",
                "attendance\/main.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "optional_permissions": [
        "",
        "notifications"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "externally_connectable": {
        "matches": [
            "*:\/\/meet.google.com\/*"
        ]
    },
    "page_action": {
        "default_icon": {
            "16": "icons\/icon16.png",
            "48": "icons\/icon48.png",
            "128": "icons\/icon128.png"
        },
        "default_popup": "popup\/popup.html",
        "default_title": "Meet Attendance Collector"
    },
    "options_page": "options\/options.html",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "manifest_version": 2
}