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.

Cos'è Google Meet Attendance (Works with New UI)?

Google Meet Attendance (Works with New UI) è un'estensione di Chrome sviluppata da Clipboard Manager, e la sua funzione principale è "Simple Chrome Extension to record single time, time-wise attendance of members and will download to csv file.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Google Meet Attendance (Works with New UI)

Scarica i file di estensione Google Meet Attendance (Works with New UI) 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

                        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                    

Informazioni di Base sull'Estensione

Nome Google Meet Attendance (Works with New UI) Google Meet Attendance (Works with New UI)
ID hjjeaaibilndjeabckakaknlcbblcmbc
URL Ufficiale https://chrome.google.com/webstore/detail/google-meet-attendance-wo/hjjeaaibilndjeabckakaknlcbblcmbc
Descrizione Simple Chrome Extension to record single time, time-wise attendance of members and will download to csv file.
Dimensione del File 514 KB
Conteggio Installazioni 100,000
Versione Corrente 2.1.2
Ultimo Aggiornamento 2022-07-02
Data di Pubblicazione 2020-06-04
Valutazione 4.37/5 Totale 116 Valutazioni
Sviluppatore Clipboard Manager
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://unscart.com/clipboard-privacy-policy
Lingue Supportate 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
}