Video Downloader Web

Video Downloader Web

An effective utility for allowing you to download all videos 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.8.5",
  "manifest_version": 2,
  "name": "__MSG_name__",
  "short_name": "__MSG_name__",
  "description": "__MSG_desc__",
  "default_locale": "en",
  "icons": {
    "128": "img/logo.png"
  },
  "browser_action": {
    "default_title": "__MSG_name__",
    "default_icon": "img/download_inactive.png",
    "default_popup": "html/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/providers/abstract-provider.js",
        "js/providers/xx.js"
      ],
      "all_frames": false,
      "run_at": "document_start"
    },
    {
      "matches": [
        "*://*.facebook.com/*"
      ],
      "js": [
        "js/providers/fb.js"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "*://*.instagram.com/*"
      ],
      "js": [
        "js/providers/in.js"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "*://*.twitter.com/*"
      ],
      "js": [
        "js/providers/tw.js"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "*://*.dailymotion.com/*"
      ],
      "js": [
        "js/providers/dm.js"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/providers/other.js"
      ],
      "all_frames": true
    }
  ],
  "background": {
    "scripts": [
      "js/lib/jquery-3.2.1.min.js",
      "js/lib/tools.js",
      "js/_config.js",
      "js/background.js"
    ]
  },
  "permissions": [
    "tabs",
    "downloads",
    "storage",
    "webRequest",
    "webRequestBlocking",
    "<all_urls>"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval';  object-src 'self'"
}