Video Health Services PTZ Camera Control

Video Health Services PTZ Camera Control

This Edge extension is meant to allow VisuWell / WeCounsel sites to enable camera pan-tilt-zoom control during WebRTC sessions.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Video Health Services PTZ Camera Control",
  "author": "VisuWell",
  "version": "0.0.7",
  "manifest_version": 2,
  "minimum_chrome_version": "34",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx",
  "description": "This Edge extension is meant to allow VisuWell / WeCounsel sites to enable camera pan-tilt-zoom control during WebRTC sessions.",
  "homepage_url": "https://visuwell.io/",
  "background": {
    "scripts": [
      "main.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "icons": {
    "16": "logo16.png",
    "48": "logo48.png",
    "128": "logo128.png"
  },
  "permissions": [
    "nativeMessaging"
  ]
}