Hangouts Shortcuts
Shortcuts for Google Hangouts on Chrome
什么是Hangouts Shortcuts?
Hangouts Shortcuts是由somasundaram.a23开发的Chrome扩展程序,该扩展的主要功能是“Shortcuts for Google Hangouts on Chrome”。
扩展截图
下载Hangouts Shortcuts扩展crx文件
下载Hangouts Shortcuts扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Enables shortcut to toggle mic and video camera on Google hangouts.
Default shortcuts:
Toggle mic: Ctrl + M
Toggle video: Ctrl + B 扩展基本信息
| 名称 | |
| ID | mbgcohmdaihkelcokapfdmenehoafplh |
| 官方URL | https://chromewebstore.google.com/detail/hangouts-shortcuts/mbgcohmdaihkelcokapfdmenehoafplh |
| 简介 | Shortcuts for Google Hangouts on Chrome |
| 文件大小 | 4.28 KB |
| 安装次数 | 102 |
| 当前版本 | 1.0 |
| 更新时间 | 2019-05-19 |
| 上架时间 | 2019-05-19 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | somasundaram.a23 |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Hangouts Shortcuts",
"version": "1.0",
"description": "Shortcuts for Google Hangouts on Chrome",
"manifest_version": 2,
"commands": {
"toggle-mic": {
"suggested_key": {
"default": "Ctrl+M"
},
"description": "Toggle hangouts mic"
},
"toggle-video": {
"suggested_key": {
"default": "Ctrl+B"
},
"description": "Toggle hangouts video"
}
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"permissions": [
"https:\/\/hangouts.google.com\/*",
"tabs"
]
} | |