Meet List

Extension for google meet attendance

什么是Meet List?

Meet List是由paulobrandaoofficial开发的Chrome扩展程序,该扩展的主要功能是“Extension for google meet attendance”。

扩展截图

screenshot

下载Meet List扩展crx文件

下载Meet List扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

扩展基本信息

名称 Meet List Meet List
ID jhlpncjccjjlioeiehpccmckenjiebmb
官方URL https://chromewebstore.google.com/detail/meet-list/jhlpncjccjjlioeiehpccmckenjiebmb
简介 Extension for google meet attendance
文件大小 40.59 KB
安装次数 77
当前版本 0.1.0
更新时间 2020-11-21
上架时间 2020-11-21
评分 5.00/5 共2次评分
开发者 paulobrandaoofficial
电子邮箱 [email protected]
付费类型 free
支持的语言 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"
            ]
        }
    ]
}