Hangouts toggle
This extension allows you to (un)mute your microphone and enable/disable your webcam with a single shortcut from everywhere.
什么是Hangouts toggle?
Hangouts toggle是由Wouter0100开发的Chrome扩展程序,该扩展的主要功能是“This extension allows you to (un)mute your microphone and enable/disable your webcam with a single shortcut from everywhere.”。
下载Hangouts toggle扩展crx文件
下载Hangouts toggle扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension allows you to (un)mute your microphone and enable/disable your webcam with a single shortcut from everywhere.
You're able to select the shortcut from the Extensions page in Chrome, at the right bottom of the page. 扩展基本信息
| 名称 | |
| ID | nidndogcoebjkeffddmaijgegbenafaa |
| 官方URL | https://chrome.google.com/webstore/detail/nidndogcoebjkeffddmaijgegbenafaa |
| 简介 | This extension allows you to (un)mute your microphone and enable/disable your webcam with a single shortcut from everywhere. |
| 文件大小 | 30.15 KB |
| 安装次数 | 74 |
| 当前版本 | 2.0 |
| 更新时间 | 2016-01-31 |
| 上架时间 | 2016-01-31 |
| 评分 | 4.50/5 共2次评分 |
| 开发者 | Wouter0100 |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/wouter0100/Hangouts-Toggle |
| 帮助页面URL | https://github.com/wouter0100/Hangouts-Toggle |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Hangouts toggle",
"version": "2.0",
"description": "This extension allows you to (un)mute your microphone and enable\/disable your webcam with a single shortcut from everywhere.",
"icons": {
"128": "assets\/img\/icon.png"
},
"permissions": [
"tabs"
],
"commands": {
"toggle": {
"suggested_key": {
"default": "Ctrl+Shift+1"
},
"global": true,
"description": "Toggle webcam and microphone in Hangouts"
},
"toggleMicrophone": {
"suggested_key": {
"default": "Ctrl+Shift+2"
},
"global": true,
"description": "Toggle webcam in Hangouts"
},
"toggleWebcam": {
"suggested_key": {
"default": "Ctrl+Shift+3"
},
"global": true,
"description": "Toggle microphone in Hangouts"
}
},
"content_scripts": [
{
"js": [
"assets\/js\/update.js"
],
"matches": [
"https:\/\/plus.google.com\/hangouts\/*",
"https:\/\/talkgadget.google.com\/hangouts\/*"
]
}
],
"background": {
"scripts": [
"assets\/js\/background.js"
],
"persistent": false
}
} | |