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