Meet List

Extension for google meet attendance

What is Meet List?

Meet List is a Chrome extension developed by paulobrandaoofficial, and its main feature is "Extension for google meet attendance".

Extension Screenshots

screenshot

Download Meet List Extension CRX File

Download Meet List extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Make attendance for your calls with this simple extention.
Developed by Paulo Brandão                    

Extension Basic Information

Name Meet List Meet List
ID jhlpncjccjjlioeiehpccmckenjiebmb
Official URL https://chromewebstore.google.com/detail/meet-list/jhlpncjccjjlioeiehpccmckenjiebmb
Description Extension for google meet attendance
File Size 40.59 KB
Installation Count 77
Current Version 0.1.0
Last Updated 2020-11-21
Publish Date 2020-11-21
Rating 5.00/5 Total 2 Ratings
Developer paulobrandaoofficial
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Meet List",
    "version": "0.1.0",
    "description": "Extension for google meet attendance",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Meet List",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "contentScript.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ]
}