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 } } |