Upbringo - Meet
This extension will enhance your google meet experience with Upbringo
什么是Upbringo - Meet?
Upbringo - Meet是由https://www.upbringo.com开发的Chrome扩展程序,该扩展的主要功能是“This extension will enhance your google meet experience with Upbringo”。
扩展截图
下载Upbringo - Meet扩展crx文件
下载Upbringo - Meet扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension aims to reduce existing google meet limitation.
- Auto unmute ( in case someone else mutes you ).
- Auto mute other participants. 扩展基本信息
| 名称 | |
| ID | nclkpjighakdbpahncfajmokhpfellke |
| 官方URL | https://chromewebstore.google.com/detail/upbringo-meet/nclkpjighakdbpahncfajmokhpfellke |
| 简介 | This extension will enhance your google meet experience with Upbringo |
| 文件大小 | 154 KB |
| 安装次数 | 29 |
| 当前版本 | 0.0.2 |
| 更新时间 | 2020-08-24 |
| 上架时间 | 2020-08-09 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | https://www.upbringo.com |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Upbringo - Meet",
"version": "0.0.2",
"manifest_version": 2,
"description": "This extension will enhance your google meet experience with Upbringo",
"homepage_url": "https:\/\/www.upbringo.com",
"icons": {
"16": "icons\/logo16.png",
"48": "icons\/logo48.png",
"128": "icons\/logo128.png"
},
"default_locale": "en",
"browser_action": {
"default_icon": "icons\/logo48.png",
"default_title": "Upbringo - Meet",
"default_popup": "src\/page_action\/page_action.html"
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+H",
"mac": "MacCtrl+Shift+H"
},
"description": "Opens PopUp"
}
},
"permissions": [
"https:\/\/meet.google.com\/*",
"storage"
],
"content_scripts": [
{
"matches": [
"https:\/\/meet.google.com\/*"
],
"css": [
"src\/inject\/inject.css"
]
},
{
"matches": [
"https:\/\/meet.google.com\/*"
],
"js": [
"js\/jquery\/jquery.min.js",
"js\/constants.js",
"js\/storageAsync.js",
"src\/inject\/inject.js"
]
}
]
} | |