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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
            ]
        }
    ]
}