Native MPEG-Dash + HLS Playback

Native MPEG-Dash + HLS Playback

Allow the browser to play HLS (m3u8) or MPEG-Dash (mpd) video urls 'natively'

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Native MPEG-Dash + HLS Playback",
  "version": "5.0.5",
  "description": "Allow the browser to play HLS (m3u8) or MPEG-Dash (mpd) video urls 'natively'",
  "manifest_version": 3,
  "icons": {
    "128": "assets/icon128.png"
  },
  "background": {
    "service_worker": "service_worker.js",
    "type": "module"
  },
  "permissions": [
    "tabs",
    "storage",
    "contextMenus",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "options_ui": {
    "page": "options.html"
  },
  "action": {
    "default_title": "Native MPEG-Dash + HLS Playback",
    "default_icon": "assets/icon128.png",
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/index.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "/release_notes.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}