Meet Attendance List

Monitor who attendant your class and meeting!

Cos'è Meet Attendance List?

Meet Attendance List è un'estensione di Chrome sviluppata da H_reugo, e la sua funzione principale è "Monitor who attendant your class and meeting!".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Meet Attendance List

Scarica i file di estensione Meet Attendance List in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Meet Attendance List Meet Attendance List
ID opkclbdjfkagpgoflleeeklgljfgfglk
URL Ufficiale https://chromewebstore.google.com/detail/meet-attendance-list/opkclbdjfkagpgoflleeeklgljfgfglk
Descrizione Monitor who attendant your class and meeting!
Dimensione del File 606 KB
Conteggio Installazioni 2,360
Versione Corrente 2.0.0
Ultimo Aggiornamento 2024-02-06
Data di Pubblicazione 2021-01-10
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore H_reugo
Email [email protected]
Tipo di Pagamento free
URL della Pagina di Aiuto https://github.com/Hereugo
Lingue Supportate 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"
            ]
        }
    ]
}