Hangouts toggle
This extension allows you to (un)mute your microphone and enable/disable your webcam with a single shortcut from everywhere.
Was ist Hangouts toggle?
Hangouts toggle ist eine Chrome-Erweiterung, die von Wouter0100 entwickelt wurde, und ihr Hauptmerkmal ist "This extension allows you to (un)mute your microphone and enable/disable your webcam with a single shortcut from everywhere.".
Hangouts toggle-Erweiterungs-CRX-Datei herunterladen
Laden Sie Hangouts toggle-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | nidndogcoebjkeffddmaijgegbenafaa |
| Offizielle URL | https://chrome.google.com/webstore/detail/nidndogcoebjkeffddmaijgegbenafaa |
| Beschreibung | This extension allows you to (un)mute your microphone and enable/disable your webcam with a single shortcut from everywhere. |
| Dateigröße | 30.15 KB |
| Installationsanzahl | 74 |
| Aktuelle Version | 2.0 |
| Letztes Update | 2016-01-31 |
| Veröffentlichungsdatum | 2016-01-31 |
| Bewertung | 4.50/5 Insgesamt 2 Bewertungen |
| Entwickler | Wouter0100 |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/wouter0100/Hangouts-Toggle |
| Hilfeseite URL | https://github.com/wouter0100/Hangouts-Toggle |
| Unterstützte Sprachen | 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
}
} | |