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 |
| Eメール | [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
}
} | |