Video Downloader Professional - MPMux

Video Downloader Professional - MPMux

A professional video downloader plus, it can save or record online videos such as HLS, m3u8, mp4 etc.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_manifest_name__",
  "short_name": "MPMux",
  "version": "1.0.0.7",
  "description": "__MSG_manifest_description__",
  "icons": {
    "16": "img/icon-16.png",
    "48": "img/icon-48.png",
    "128": "img/icon-128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": {
      "16": "img/icon-16.png",
      "48": "img/icon-48.png",
      "128": "img/icon-128.png"
    },
    "default_title": "__MSG_manifest_browser_action__",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://mpmux.com/hlsdownloader.html",
        "*://mpmux.com/*/hlsdownloader.html"
      ],
      "js": [
        "js/jquery.min.js",
        "js/hlsdownloader.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://mpmux.com/staticdownloader.html",
        "*://mpmux.com/*/staticdownloader.html"
      ],
      "js": [
        "js/jquery.min.js",
        "js/staticdownloader.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://mpmux.com/hlsrecorder.html",
        "*://mpmux.com/*/hlsrecorder.html"
      ],
      "js": [
        "js/jquery.min.js",
        "js/hlsrecorder.js"
      ],
      "run_at": "document_end"
    },
    {
      "all_frames": true,
      "matches": [
        "*://*/*"
      ],
      "exclude_globs": [
        "*//mpmux.com/*"
      ],
      "js": [
        "js/content-script.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "js/injected.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "use_dynamic_url": true
    }
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "permissions": [
    "offscreen",
    "tabs",
    "webRequest",
    "storage",
    "declarativeNetRequest"
  ],
  "homepage_url": "https://mpmux.com/",
  "default_locale": "en"
}