Video Downloader Plus

Video Downloader Plus

Video Downloader Plus is the best way to download video from Chrome. Free video saver utility for all video formats.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.1.11",
  "manifest_version": 3,
  "name": "__MSG_AppName__",
  "description": "__MSG_AppDescription__",
  "default_locale": "en",
  "icons": {
    "32": "icons/32.png",
    "64": "icons/64.png",
    "128": "icons/128.png"
  },
  "action": {
    "default_title": "__MSG_title__",
    "default_popup": "popup.html",
    "default_icon": {
      "64": "icons/64.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "background": {
    "service_worker": "worker.js"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "downloads",
    "storage",
    "webRequest",
    "tabs",
    "scripting"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}