Video Downloader professional

Video Downloader professional

Popular Video Downloader. Save most popular media formats across the Web!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.2.0",
  "manifest_version": 2,
  "name": "__MSG_name__",
  "short_name": "__MSG_name__",
  "description": "__MSG_desc__",
  "default_locale": "en",
  "icons": {
    "32": "/images/icon-32.png",
    "64": "/images/icon-64.png",
    "128": "/images/icon-128.png"
  },
  "browser_action": {
    "default_icon": "/images/icon-32.png",
    "default_title": "__MSG_title__",
    "default_popup": "/index.html"
  },
  "background": {
    "scripts": [
      "/js/assests/jquery-3.2.1.min.js",
      "/js/assests/tools.js",
      "/js/configuration.js",
      "/js/bg.js"
    ]
  },
  "permissions": [
    "storage",
    "downloads",
    "webRequest",
    "webRequestBlocking",
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/js/assests/jquery-3.2.1.min.js",
        "/js/assests/tools.js",
        "/js/configuration.js",
        "/js/ap.js",
        "/js/all_sc.js",
        "/js/content.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/js/content_ext.js"
      ],
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    "/images/*"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval';  object-src 'self'"
}