Wise Video Downloader

Wise Video Downloader

Download videos from the most popular sites. Easy way to save videos fast and for free.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.5.5",
  "manifest_version": 2,
  "name": "__MSG_name__",
  "short_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"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/js/lib/jquery-3.2.1.min.js",
        "/js/lib/tools.js",
        "/js/_config.js",
        "/js/providers/abstract-provider.js",
        "/js/content.js"
      ],
      "css": [
        "/css/btns.css"
      ],
      "all_frames": true
    },
    {
      "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": [
        "*://*.vk.com/*"
      ],
      "js": [
        "/js/providers/vk.js"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "*://*.vimeo.com/*"
      ],
      "js": [
        "/js/providers/vm.js"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/providers/xx.js",
        "/js/content.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",
    "<all_urls>"
  ],
  "web_accessible_resources": [
    "/img/*"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval';  object-src 'self'"
}