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 Wouter0100 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension allows you to (un)mute your microphone and enable/disable your webcam with a single shortcut from everywhere."।
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Hangouts toggle एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 } } |