M3U8 Downloaders - Video Downloads Simplified

M3U8 Downloaders - Video Downloads Simplified

Fast and easy way to Detect and Download any Online Videos ,M3U8 Videos, HTTP live streams (HLS) - free, fast & easy to use.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "M3U8 Downloaders - Video Downloads Simplified",
  "version": "2.0.3",
  "description": "Fast and easy way to Detect and Download any Online Videos ,M3U8 Videos, HTTP live streams (HLS) - free, fast & easy to use.",
  "permissions": [
    "webRequest",
    "activeTab",
    "storage",
    "downloads"
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "exclude_matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "icons": {
    "512": "icons/logo_icon_512.png"
  },
  "action": {
    "default_icon": {
      "128": "icons/o_icon_128.png"
    },
    "default_popup": "popup.html",
    "default_title": "M3U8 Downloaders - free, fast & easy to use."
  },
  "web_accessible_resources": [
    {
      "resources": [
        "popup.js",
        "icons/r_icon_128.png",
        "icons/g_icon_128.png",
        "icons/o_icon_128.png"
      ],
      "matches": [
        "<all_urls>"
      ],
      "use_dynamic_url": false
    }
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ]
}