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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Simple Chrome Extension to record single time, time-wise attendance of members and will download to csv file."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Google Meet Attendance (Works with New UI) एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
}