Video downloader Plus

Video downloader Plus

We offer a free online video downloader tool to download any video from the web instantly for free. Download video in a few clicks!

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",
  "icons": {
    "32": "img/32.png",
    "64": "img/64.png",
    "128": "img/128.png"
  },
  "browser_action": {
    "default_icon": "img/32.png",
    "default_title": "Video Downloader Plus",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "js/lib/grafy.js",
      "js/lib/analytics.js",
      "js/lib/jquery-3.1.1.min.js",
      "js/lib/tools.js",
      "js/_config.js",
      "js/background.js",
      "js/tracker.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/lib/jquery-3.1.1.min.js",
        "js/lib/tools.js",
        "js/lib/md5.min.js",
        "js/_config.js",
        "js/app.js",
        "js/content.js"
      ],
      "css": [
        "css/app.css",
        "css/sidebar.css",
        "css/content.css"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "js/lib/analytics.js"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://google-analytics.com; object-src 'self'",
  "manifest_version": 2,
  "permissions": [
    "downloads",
    "<all_urls>",
    "storage",
    "webRequest",
    "webRequestBlocking"
  ],
  "web_accessible_resources": [
    "img/*"
  ],
  "version": "3.1"
}