Hangouts toggle
This extension allows you to (un)mute your microphone and enable/disable your webcam with a single shortcut from everywhere.
What is Hangouts toggle?
Hangouts toggle is a Chrome extension developed by Wouter0100, and its main feature is "This extension allows you to (un)mute your microphone and enable/disable your webcam with a single shortcut from everywhere.".
Download Hangouts toggle Extension CRX File
Download Hangouts toggle extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | nidndogcoebjkeffddmaijgegbenafaa |
Official URL | https://chrome.google.com/webstore/detail/nidndogcoebjkeffddmaijgegbenafaa |
Description | This extension allows you to (un)mute your microphone and enable/disable your webcam with a single shortcut from everywhere. |
File Size | 30.15 KB |
Installation Count | 74 |
Current Version | 2.0 |
Last Updated | 2016-01-31 |
Publish Date | 2016-01-31 |
Rating | 4.50/5 Total 2 Ratings |
Developer | Wouter0100 |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/wouter0100/Hangouts-Toggle |
Help Page URL | https://github.com/wouter0100/Hangouts-Toggle |
Supported Languages | 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 } } |