HLS Downloader

HLS Downloader

HTTP Live Stream downloader

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "HLS Download",
  "name": "HLS Downloader",
  "description": "HTTP Live Stream downloader",
  "manifest_version": 3,
  "action": {
    "default_popup": "index.html",
    "default_title": "HLS Downloader",
    "default_icon": "assets/icons/128.png"
  },
  "version": "3.2.1.3",
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "web_accessible_resources": [
    {
      "matches": [
        "*://*/*"
      ],
      "resources": [
        "assets/icons/*"
      ],
      "use_dynamic_url": false
    }
  ],
  "content_scripts": [
    {
      "js": [
        "content_script.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "permissions": [
    "webRequest",
    "unlimitedStorage",
    "storage",
    "downloads",
    "tabs",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "icons": {
    "16": "assets/icons/16.png",
    "48": "assets/icons/48.png",
    "128": "assets/icons/128.png",
    "256": "assets/icons/256.png"
  }
}