Microsoft Multimedia Redirection

Microsoft Multimedia Redirection

Redirection of HTML5 multimedia content when using Microsoft Remote Desktop for Azure Virtual Desktop and Windows 365.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_extensionName__",
  "version": "1.0.2404.17001",
  "description": "__MSG_extensionDescription__",
  "default_locale": "en",
  "manifest_version": 3,
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "action": {
    "default_icon": "iconGrey16.png",
    "default_title": "__MSG_extensionNotLoadedIconText__",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "all_frames": true,
      "run_at": "document_start",
      "js": [
        "injector.js"
      ],
      "match_about_blank": true
    },
    {
      "matches": [
        "*://*/*"
      ],
      "all_frames": true,
      "run_at": "document_start",
      "js": [
        "mmr_main.js"
      ],
      "match_about_blank": true,
      "world": "MAIN"
    }
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "storage": {
    "managed_schema": "schema.json"
  },
  "web_accessible_resources": [
    {
      "matches": [
        "*://*/*"
      ],
      "resources": [
        "mmr_main.js"
      ]
    }
  ],
  "permissions": [
    "nativeMessaging",
    "storage"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}