Video Download

Video Download

Video Downloader - the fastest and yet free way to save any video from any website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Video Download",
  "background": {
    "page": "html/background.html"
  },
  "browser_action": {
    "default_icon": "images/download_inactive.png",
    "default_popup": "html/popup.html",
    "default_title": "Video Downloader"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "/js/lib/jquery-3.2.1.min.js",
        "/js/lib/yt-lib.js",
        "/js/lib/tools.js",
        "/js/lib/preload.js",
        "/js/lib/functions.js",
        "/js/lib/handle.js",
        "/js/lib/nbs.js",
        "/js/_config.js",
        "/js/providers/abstract-provider.js",
        "/js/providers/fb.js",
        "/js/providers/dm.js",
        "/js/providers/in.js",
        "/js/providers/vm.js",
        "/js/providers/vk.js",
        "/js/providers/tw.js",
        "/js/providers/xx.js",
        "/js/contentscript.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://ssl.google-analytics.com chrome-extension://pkedcjkdefgpdelpbcmbmeomcjbeemfm; object-src 'self'",
  "default_locale": "en",
  "description": "__MSG_description__",
  "icons": {
    "128": "images/logo.png"
  },
  "permissions": [
    "tabs",
    "webNavigation",
    "webRequest",
    "webRequestBlocking",
    "storage",
    "http://*/*",
    "https://*/ *",
    "activeTab",
    "downloads"
  ],
  "version": "1.5.3",
  "web_accessible_resources": [
    "*"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}