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

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

확장 프로그램 사용 설명서

                        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
공식 URL 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
}