Video Health Services PTZ Camera Control

Video Health Services PTZ Camera Control

This Chrome extension is meant to allow Hatch sites to enable camera pan-tilt-zoom control during WebRTC sessions.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Video Health Services PTZ Camera Control",
  "author": "Hatch",
  "version": "2.0.1",
  "manifest_version": 3,
  "minimum_chrome_version": "88",
  "description": "This Chrome extension is meant to allow Hatch sites to enable camera pan-tilt-zoom control during WebRTC sessions.",
  "homepage_url": "https://hatchcare.com/",
  "background": {
    "service_worker": "main.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "icons": {
    "16": "logo16.png",
    "48": "logo48.png",
    "128": "logo128.png"
  },
  "permissions": [
    "nativeMessaging"
  ]
}