Meet Attendance List

Monitor who attendant your class and meeting!

什么是Meet Attendance List?

Meet Attendance List是由H_reugo开发的Chrome扩展程序,该扩展的主要功能是“Monitor who attendant your class and meeting!”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Meet Attendance List扩展crx文件

下载Meet Attendance List扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        GOOGLE MEET ATTENDANCE LIST

A Google Chrome extension that saves the list of people present in a Google Meet call at a particular time.

FEATURES

- Have multiple classes, each with its own attendance list
- Create / Edit / Delete classes
- Export attendance as CSV file
- Modern UI, easy to use                    

扩展基本信息

名称 Meet Attendance List Meet Attendance List
ID opkclbdjfkagpgoflleeeklgljfgfglk
官方URL https://chromewebstore.google.com/detail/meet-attendance-list/opkclbdjfkagpgoflleeeklgljfgfglk
简介 Monitor who attendant your class and meeting!
文件大小 606 KB
安装次数 2,360
当前版本 2.0.0
更新时间 2024-02-06
上架时间 2021-01-10
评分 5.00/5 共1次评分
开发者 H_reugo
电子邮箱 [email protected]
付费类型 free
帮助页面URL https://github.com/Hereugo
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Meet Attendance List",
    "description": "Monitor who attendant your class and meeting!",
    "version": "2.0.0",
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "background": {
        "service_worker": ".\/service_worker.js"
    },
    "action": {
        "default_icon": {
            "16": "icons\/16.png",
            "32": "icons\/32.png",
            "48": "icons\/48.png",
            "128": "icons\/128.png"
        },
        "default_title": "Meet Attendance List"
    },
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "js\/utils.js",
                "js\/inject.js",
                "images\/defaultAvatar.png"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/**-**-**"
            ],
            "js": [
                "node_modules\/@webcomponents\/custom-elements\/custom-elements.min.js",
                "js\/utils.js",
                "js\/components\/Modal.js",
                "js\/components\/TagContainer.js",
                "js\/components\/ListView.js",
                "js\/components\/DetailView.js",
                "js\/components\/ClassView.js",
                "js\/templates.js",
                "js\/content_script.js"
            ],
            "css": [
                "third-party\/fontawesome\/pro.min.css",
                "css\/index.css",
                "css\/class.css",
                "css\/detail.css",
                "css\/list.css",
                "css\/box.css"
            ]
        }
    ]
}