Camera Pan Tilt Zoom
Control camera pan, tilt, and zoom
Camera Pan Tilt Zoom क्या है?
Camera Pan Tilt Zoom François Beaufort द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Control camera pan, tilt, and zoom"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Camera Pan Tilt Zoom एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 } |