Hangouts toggle
This extension allows you to (un)mute your microphone and enable/disable your webcam with a single shortcut from everywhere.
Hangouts toggle là gì?
Hangouts toggle là một tiện ích mở rộng Chrome được phát triển bởi Wouter0100, và tính năng chính của nó là "This extension allows you to (un)mute your microphone and enable/disable your webcam with a single shortcut from everywhere.".
Tải xuống tệp CRX của tiện ích mở rộng Hangouts toggle
Tải xuống các tệp mở rộng Hangouts toggle dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | nidndogcoebjkeffddmaijgegbenafaa |
URL Chính Thức | https://chrome.google.com/webstore/detail/nidndogcoebjkeffddmaijgegbenafaa |
Mô tả | This extension allows you to (un)mute your microphone and enable/disable your webcam with a single shortcut from everywhere. |
Kích Thước Tệp | 30.15 KB |
Số Lần Cài Đặt | 74 |
Phiên Bản Hiện Tại | 2.0 |
Cập Nhật Lần Cuối | 2016-01-31 |
Ngày Phát Hành | 2016-01-31 |
Đánh Giá | 4.50/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | Wouter0100 |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/wouter0100/Hangouts-Toggle |
URL Trang Trợ Giúp | https://github.com/wouter0100/Hangouts-Toggle |
Ngôn Ngữ Được Hỗ Trợ | 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 } } |