Web Video Downloader

Web Video Downloader

Reliable video downloader for Chrome. The fastest and easiest way to to download any video from any website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.1.13",
  "manifest_version": 2,
  "name": "__MSG_name__",
  "short_name": "__MSG_name__",
  "description": "__MSG_desc__",
  "default_locale": "en",
  "icons": {
    "32": "/img/32.png",
    "64": "/img/64.png",
    "128": "/img/128.png"
  },
  "browser_action": {
    "default_icon": "/img/32.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/js/lib/jquery-3.2.1.min.js",
        "/js/lib/tools.js",
        "/js/_config.js",
        "/js/content.js",
        "/js/share-modal.js"
      ],
      "css": [
        "/css/btns.css",
        "/css/share-modal.css"
      ],
      "all_frames": true
    }
  ],
  "background": {
    "scripts": [
      "/js/lib/jquery-3.2.1.min.js",
      "/js/lib/tools.js",
      "/js/_config.js",
      "/js/background.js",
      "/js/share-modal.js"
    ]
  },
  "permissions": [
    "tabs",
    "downloads",
    "storage",
    "webRequest",
    "webRequestBlocking",
    "<all_urls>"
  ],
  "web_accessible_resources": [
    "/img/*"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval';  object-src 'self'"
}