Video Downloader Plus

Video Downloader Plus

Video Downloader Plus - The fastest and easiest way to download any video from any website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "page": "html/background.html"
  },
  "browser_action": {
    "default_icon": "icons/icon_inactive.png",
    "default_popup": "html/popup.html",
    "default_title": "Video Downloader Plus"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "js/jquery-3.1.1.min.js",
        "js/purify.min.js",
        "js/common.js",
        "js/contentscript.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "content_security_policy": "script-src 'self' https://www.gstatic.com https://ssl.google-analytics.com; object-src 'self' https://ssl.google-analytics.com;",
  "icons": {
    "16": "icons/16.png",
    "19": "icons/19.png",
    "38": "icons/38.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "manifest_version": 2,
  "permissions": [
    "tabs",
    "webRequest",
    "webRequestBlocking",
    "cookies",
    "storage",
    "http://*/*",
    "https://*/*"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx",
  "name": "__MSG_name__",
  "short_name": "__MSG_name__",
  "description": "__MSG_desc__",
  "default_locale": "en_US",
  "version": "1.1",
  "web_accessible_resources": [
    "*"
  ],
  "options_ui": {
    "page": "html/options.html",
    "open_in_tab": true
  }
}