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 - это расширение Chrome, разработанное Wouter0100, и его основная функция - "This extension allows you to (un)mute your microphone and enable/disable your webcam with a single shortcut from everywhere.".
Скачать файл CRX расширения Hangouts toggle
Скачайте файлы расширений 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 } } |