Video Downloader professional

Video Downloader professional

Download online videos in various formats from any websites. Video Downloader save video and watch it later.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.0.6",
  "manifest_version": 3,
  "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"
  },
  "action": {
    "default_icon": "/img/128.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/js/lib/jquery-3.2.1.min.js",
        "/js/lib/_config.js",
        "/js/content.js",
        "/js/feedback.js"
      ],
      "css": [
        "/assets/btns.css",
        "/assets/feedback.css"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/js/content.js"
      ],
      "all_frames": true
    }
  ],
  "background": {
    "service_worker": "js/serviceWorker.js"
  },
  "permissions": [
    "tabs",
    "downloads",
    "storage",
    "webRequest"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "img/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}