Meet List
Extension for google meet attendance
什麼是Meet List?
Meet List是由paulobrandaoofficial開發的Chrome擴展程式,該擴展的主要功能是“Extension for google meet attendance”。
擴展截圖
下載Meet List擴展crx文件
下載Meet List擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Make attendance for your calls with this simple extention.
Developed by Paulo Brandão 擴展基本資訊
| 名稱 | |
| ID | jhlpncjccjjlioeiehpccmckenjiebmb |
| 官方網址 | 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"
]
}
]
} | |