Camera Pan Tilt Zoom
Control camera pan, tilt, and zoom
Camera Pan Tilt Zoomคืออะไร?
Camera Pan Tilt Zoom เป็นส่วนขยายของ Chrome ที่พัฒนาโดย François Beaufort และคุณลักษณะหลักของมันคือ "Control camera pan, tilt, and zoom"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Camera Pan Tilt Zoom
ดาวน์โหลดไฟล์ส่วนขยาย Camera Pan Tilt Zoom ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Control camera pan, tilt, and zoom on any video conferencing website. Keyboard shortcuts: Alt + Z and Alt + Shift + Z to zoom in and out. Source code: https://github.com/GoogleChromeLabs/camera-pan-tilt-zoom-chrome-extension By installing this item, you agree to the Google Terms of Service and Privacy Policy at https://www.google.com/intl/en/policies/.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Camera Pan Tilt Zoom |
ID | obkehignjblpidgnopmikpgjklkpbgpj |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/camera-pan-tilt-zoom/obkehignjblpidgnopmikpgjklkpbgpj |
คำอธิบาย | Control camera pan, tilt, and zoom |
ขนาดไฟล์ | 11.46 KB |
จำนวนการติดตั้ง | 2,364 |
เวอร์ชันปัจจุบัน | 1.7 |
อัปเดตครั้งล่าสุด | 2023-07-07 |
วันที่เผยแพร่ | 2021-01-11 |
คะแนน | 5.00/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | François Beaufort |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Camera Pan Tilt Zoom", "description": "Control camera pan, tilt, and zoom", "version": "1.7", "icons": { "128": "assets\/icon128.png" }, "background": { "service_worker": "background.js" }, "commands": { "zoomIn": { "description": "Zoom in", "suggested_key": "Alt+Z" }, "zoomOut": { "description": "Zoom out", "suggested_key": "Shift+Alt+Z" }, "panLeft": { "description": "Pan left" }, "panRight": { "description": "Pan right" }, "tiltUp": { "description": "Tilt up" }, "tiltDown": { "description": "Tilt down" } }, "action": { "default_popup": "popup.html", "default_icon": { "19": "assets\/icon19.png", "38": "assets\/icon38.png" } }, "permissions": [ "scripting", "activeTab" ], "manifest_version": 3 } |