Hangouts toggle
This extension allows you to (un)mute your microphone and enable/disable your webcam with a single shortcut from everywhere.
Co to jest Hangouts toggle?
Hangouts toggle to rozszerzenie Chrome opracowane przez Wouter0100, a jego główną funkcją jest „This extension allows you to (un)mute your microphone and enable/disable your webcam with a single shortcut from everywhere.”.
Pobierz plik CRX rozszerzenia Hangouts toggle
Pobierz pliki rozszerzeń Hangouts toggle w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | nidndogcoebjkeffddmaijgegbenafaa |
Oficjalny URL | https://chrome.google.com/webstore/detail/nidndogcoebjkeffddmaijgegbenafaa |
Opis | This extension allows you to (un)mute your microphone and enable/disable your webcam with a single shortcut from everywhere. |
Rozmiar pliku | 30.15 KB |
Liczba instalacji | 74 |
Aktualna Wersja | 2.0 |
Ostatnia Aktualizacja | 2016-01-31 |
Data Publikacji | 2016-01-31 |
Ocena | 4.50/5 Łącznie 2 Oceny |
Deweloper | Wouter0100 |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/wouter0100/Hangouts-Toggle |
Adres URL Strony Pomocy | https://github.com/wouter0100/Hangouts-Toggle |
Obsługiwane Języki | 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 } } |