Video Downloader PLUS

Video Downloader PLUS

Download video online from any website fast and easily. Video Downloader PLUS allows to save video and watch it later

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx",
  "version": "1.3.2",
  "manifest_version": 3,
  "name": "Video Downloader PLUS",
  "description": "Download video online from any website fast and easily. Video Downloader PLUS allows to save video and watch it later",
  "icons": {
    "128": "assets/logo.png"
  },
  "action": {
    "default_icon": "assets/logo.png",
    "default_title": "__MSG_title__",
    "default_popup": "/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/scripts/libs/jquery-3.2.1.min.js",
        "/scripts/libs/tools.js",
        "/scripts/video-providers/abstract-video-provider.js",
        "/scripts/video-providers/provider-fb.js",
        "/scripts/video-providers/provider-tw.js",
        "/scripts/video-providers/provider-dm.js",
        "/scripts/video-providers/provider-in.js",
        "/scripts/video-providers/provider-xx.js",
        "/scripts/main-app.js",
        "/scripts/content.js"
      ],
      "css": [
        "/styles/btns.css",
        "/styles/app.css",
        "/styles/sidebar.css"
      ]
    }
  ],
  "background": {
    "service_worker": "/bg.js"
  },
  "permissions": [
    "storage",
    "downloads",
    "webRequest",
    "scripting"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/assets/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}