Meet Attendance List

Monitor who attendant your class and meeting!

Co to jest Meet Attendance List?

Meet Attendance List to rozszerzenie Chrome opracowane przez H_reugo, a jego główną funkcją jest „Monitor who attendant your class and meeting!”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Meet Attendance List

Pobierz pliki rozszerzeń Meet Attendance List w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Meet Attendance List Meet Attendance List
ID opkclbdjfkagpgoflleeeklgljfgfglk
Oficjalny URL https://chromewebstore.google.com/detail/meet-attendance-list/opkclbdjfkagpgoflleeeklgljfgfglk
Opis Monitor who attendant your class and meeting!
Rozmiar pliku 606 KB
Liczba instalacji 2,360
Aktualna Wersja 2.0.0
Ostatnia Aktualizacja 2024-02-06
Data Publikacji 2021-01-10
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper H_reugo
E-mail [email protected]
Typ Płatności free
Adres URL Strony Pomocy https://github.com/Hereugo
Obsługiwane Języki 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"
            ]
        }
    ]
}