Hangouts toggle
This extension allows you to (un)mute your microphone and enable/disable your webcam with a single shortcut from everywhere.
Qu'est-ce que Hangouts toggle ?
Hangouts toggle est une extension Chrome développée par Wouter0100, et sa fonction principale est "This extension allows you to (un)mute your microphone and enable/disable your webcam with a single shortcut from everywhere.".
Télécharger le fichier CRX de l'extension Hangouts toggle
Téléchargez les fichiers d'extension Hangouts toggle au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | |
ID | nidndogcoebjkeffddmaijgegbenafaa |
URL Officiel | 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. |
Taille du Fichier | 30.15 KB |
Nombre d'Installations | 74 |
Version Actuelle | 2.0 |
Dernière Mise à Jour | 2016-01-31 |
Date de Publication | 2016-01-31 |
Évaluation | 4.50/5 Total 2 Évaluations |
Développeur | Wouter0100 |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/wouter0100/Hangouts-Toggle |
URL de la Page d'Aide | https://github.com/wouter0100/Hangouts-Toggle |
Langues Prises en Charge | 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 } } |