VMware Horizon HTML5 Redirection Extension

VMware Horizon HTML5 Redirection Extension

Chrome extension to enable HTML5 Multimedia redirection inside VMware Horizon Agent.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_ExtensionName__",
  "version": "8.8.0.0",
  "version_name": "8.8.0.0",
  "default_locale": "en",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAhPu+iHazmS33b8NUVVx6EX0Bi862P70iFa0YrQzkGsfzvNmxIuYzphShJUJZpEnbP/EFr3by6usBaDdwHC6wlc/RyzmOnSfVrwrwN2OyhDRN459MJG5dU4te4fIkXO8iexLW1ljvy7JA7MMBWD5ePGuOV7e6yo54zXVaoPGjVBuwc+rWM+hm+AchoyplxLg3aqJmrnkzvurlwVXjScvnQIpTFcIZaJ1ERT2ZI+uX01dL/PyuKKBuDKBxmhCrXY2adHmoRYD5VpSqvP/2dh2voFXi/obrQOa2fHy5XWTYWSh9XpDZ5wSXeYpKfMyAqlYjzQSggaDuCuDK2obPqtm3mQIDAQAB",
  "description": "__MSG_ExtensionDescription__",
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "nativeMessaging",
    "scripting",
    "webRequest"
  ],
  "icons": {
    "16": "horizon-16.png",
    "48": "horizon-48.png",
    "128": "horizon-128.png"
  },
  "manifest_version": 3,
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content_script.js"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "match_about_blank": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "html5mmrPlayer.js",
        "html5RedirScript.js"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ],
  "action": {
    "default_icon": "horizon-16.png"
  }
}