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
Eメール [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"
            ]
        }
    ]
}