Camera Pan Tilt Zoom
Control camera pan, tilt, and zoom
Camera Pan Tilt Zoom란 무엇입니까?
Camera Pan Tilt Zoom은(는) François Beaufort에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Control camera pan, tilt, and zoom"입니다.
확장 프로그램 스크린샷
Camera Pan Tilt Zoom 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 } |