Video Downloader professional

Video Downloader professional

Download online videos in various formats and from any websites.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "version": "1.0.0",
  "manifest_version": 3,
  "name": "__MSG_name__",
  "description": "__MSG_desc__",
  "default_locale": "en",
  "icons": {
    "32": "/img/icon-32.png",
    "64": "/img/icon-64.png",
    "128": "/img/icon-128.png"
  },
  "action": {
    "default_icon": "/img/icon-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>"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}