Video Downloader Pro

Video Downloader Pro

Video Downloader - download any video from any website! Fast, easy, free!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "persistent": true,
    "scripts": [
      "js/mono.js",
      "js/jquery-3.1.1.min.js",
      "js/bg.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "19": "img/icon_19.png",
      "38": "img/icon_38.png"
    },
    "default_popup": "popup.html"
  },
  "default_locale": "en",
  "description": "__MSG_extDescription__",
  "icons": {
    "16": "img/icon_16.png",
    "48": "img/icon_48.png",
    "128": "img/icon_128.png"
  },
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "options_ui": {
    "chrome_style": true,
    "page": "options.html"
  },
  "permissions": [
    "<all_urls>",
    "storage",
    "webRequest",
    "webRequestBlocking",
    "tabs",
    "downloads"
  ],
  "version": "1.4.4",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./js/providers/allUrl.js"
      ],
      "run_at": "document_idle",
      "exclude_matches": [
        "*://*.vimeo.com/*",
        "*://*.dailymotion.com/*",
        "*://*.vk.com/*"
      ]
    },
    {
      "matches": [
        "*://*.vk.com/*"
      ],
      "run_at": "document_idle",
      "js": [
        "./js/providers/inConnect.js"
      ]
    },
    {
      "matches": [
        "*://*.vimeo.com/*"
      ],
      "run_at": "document_idle",
      "js": [
        "./js/providers/vInBlue.js"
      ]
    },
    {
      "matches": [
        "*://*.dailymotion.com/*"
      ],
      "run_at": "document_idle",
      "js": [
        "./js/providers/blackIcon.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./js/adapters/inFrame.js"
      ],
      "all_frames": true
    }
  ]
}