Video Downloader (mp4, hls, m3u8)

Video Downloader (mp4, hls, m3u8)

Video downloader for popular social networks, download video online from any website quickly and easily. Save any video for free.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "description": "__MSG_desc__",
  "default_locale": "en",
  "version": "1.2.2",
  "icons": {
    "32": "assets/icon-32.png",
    "64": "assets/icon-64.png",
    "128": "assets/icon-128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "assets/jquery-3.2.1.min.js",
        "content.js"
      ],
      "all_frames": true,
      "exclude_matches": [
        "*://www.youtube.com/*",
        "*://4saved.com/*",
        "*://*.globo.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset_1",
        "enabled": true,
        "path": "rules_1.json"
      }
    ]
  },
  "permissions": [
    "storage",
    "tabs",
    "webRequest",
    "downloads",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "action": {
    "default_title": "__MSG_title__",
    "default_icon": "assets/icon-128.png",
    "default_popup": "popup.html"
  },
  "commands": {
    "_execute_action": {}
  },
  "web_accessible_resources": [
    {
      "resources": [
        "*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "manifest_version": 3
}