Camera Pan Tilt Zoom
Control camera pan, tilt, and zoom
Camera Pan Tilt Zoom là gì?
Camera Pan Tilt Zoom là một tiện ích mở rộng Chrome được phát triển bởi François Beaufort, và tính năng chính của nó là "Control camera pan, tilt, and zoom".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Camera Pan Tilt Zoom
Tải xuống các tệp mở rộng Camera Pan Tilt Zoom 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
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/.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Camera Pan Tilt Zoom |
ID | obkehignjblpidgnopmikpgjklkpbgpj |
URL Chính Thức | https://chromewebstore.google.com/detail/camera-pan-tilt-zoom/obkehignjblpidgnopmikpgjklkpbgpj |
Mô tả | Control camera pan, tilt, and zoom |
Kích Thước Tệp | 11.46 KB |
Số Lần Cài Đặt | 2,364 |
Phiên Bản Hiện Tại | 1.7 |
Cập Nhật Lần Cuối | 2023-07-07 |
Ngày Phát Hành | 2021-01-11 |
Đánh Giá | 5.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | François Beaufort |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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 } |