Google Meet Controls
Control your microphone manners for Meet
什么是Google Meet Controls?
Google Meet Controls是由Ivan Tichý开发的Chrome扩展程序,该扩展的主要功能是“Control your microphone manners for Meet”。
扩展截图
下载Google Meet Controls扩展crx文件
下载Google Meet Controls扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This is a simple extension that allows to control Google Meet with global keyboard shortcuts. Please have a look at the video and set up keyboard shortcuts as it cannot be set automatically during installation.
It needs Chrome restart after installation. 扩展基本信息
| 名称 | |
| ID | ncebfbcadlnhbfmfglhijjljfhimndil |
| 官方URL | https://chromewebstore.google.com/detail/google-meet-controls/ncebfbcadlnhbfmfglhijjljfhimndil |
| 简介 | Control your microphone manners for Meet |
| 文件大小 | 22.74 KB |
| 安装次数 | 665 |
| 当前版本 | 2.0 |
| 更新时间 | 2020-02-06 |
| 上架时间 | 2020-02-06 |
| 评分 | 3.00/5 共2次评分 |
| 开发者 | Ivan Tichý |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | cs |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Google Meet Controls",
"short_name": "Meet Controls",
"description": "Control your microphone manners for Meet",
"version": "2.0",
"icons": {
"128": "notmuted.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/meet.google.com\/*"
],
"run_at": "document_start",
"js": [
"meet_controller.js"
]
}
],
"background": {
"scripts": [
"keyboard_listener.js"
],
"persistent": false
},
"permissions": [
"tabs",
"notifications"
],
"commands": {
"toggle": {
"description": "Toggle mute",
"global": true,
"suggested_key": {
"default": "Ctrl+X",
"mac": "MacCtrl+X"
}
},
"mute": {
"description": "Force mute",
"global": true,
"suggested_key": {
"default": "Ctrl+M",
"mac": "MacCtrl+M"
}
},
"unmute": {
"description": "Force unmute",
"global": true,
"suggested_key": {
"default": "Ctrl+U",
"mac": "MacCtrl+U"
}
}
}
} | |