Hangouts Shortcuts
Shortcuts for Google Hangouts on Chrome
What is Hangouts Shortcuts?
Hangouts Shortcuts is a Chrome extension developed by somasundaram.a23, and its main feature is "Shortcuts for Google Hangouts on Chrome".
Extension Screenshots
Download Hangouts Shortcuts Extension CRX File
Download Hangouts Shortcuts 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
Enables shortcut to toggle mic and video camera on Google hangouts. Default shortcuts: Toggle mic: Ctrl + M Toggle video: Ctrl + B
Extension Basic Information
Name | Hangouts Shortcuts |
ID | mbgcohmdaihkelcokapfdmenehoafplh |
Official URL | https://chromewebstore.google.com/detail/hangouts-shortcuts/mbgcohmdaihkelcokapfdmenehoafplh |
Description | Shortcuts for Google Hangouts on Chrome |
File Size | 4.28 KB |
Installation Count | 102 |
Current Version | 1.0 |
Last Updated | 2019-05-19 |
Publish Date | 2019-05-19 |
Rating | 5.00/5 Total 1 Ratings |
Developer | somasundaram.a23 |
[email protected] | |
Payment Type | free |
Supported Languages | 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" ] } |