Camera Pan Tilt Zoom
Control camera pan, tilt, and zoom
Wat is Camera Pan Tilt Zoom?
Camera Pan Tilt Zoom is een Chrome-extensie ontwikkeld door François Beaufort, en de belangrijkste functie is "Control camera pan, tilt, and zoom".
Extensie Screenshots
Download het CRX-bestand van de extensie Camera Pan Tilt Zoom
Download Camera Pan Tilt Zoom-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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/.
Basisinformatie over de Extensie
Naam | Camera Pan Tilt Zoom |
ID | obkehignjblpidgnopmikpgjklkpbgpj |
Officiële URL | https://chromewebstore.google.com/detail/camera-pan-tilt-zoom/obkehignjblpidgnopmikpgjklkpbgpj |
Beschrijving | Control camera pan, tilt, and zoom |
Bestandsgrootte | 11.46 KB |
Aantal Installaties | 2,364 |
Huidige Versie | 1.7 |
Laatst Bijgewerkt | 2023-07-07 |
Publicatiedatum | 2021-01-11 |
Beoordeling | 5.00/5 Totaal 3 Beoordelingen |
Ontwikkelaar | François Beaufort |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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 } |