Video Downloader Unlimited

Video Downloader Unlimited

Video Downloader for popular social networks, video hosting or streaming platforms. Quick and free video downloader.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "default_locale": "en",
  "version": "1.1.8",
  "action": {
    "default_popup": "src/layouts/popup.html",
    "default_icon": "icons/icon_not.png"
  },
  "permissions": [
    "storage",
    "activeTab",
    "downloads",
    "webRequest",
    "webRequestBlocking"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end",
      "js": [
        "src/js/contentScript.js"
      ]
    }
  ],
  "background": {
    "service_worker": "src/js/serviceWorker.js",
    "type": "module"
  },
  "icons": {
    "128": "icons/icon_active.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "src/js/inStory.js",
        "icons/*.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "host_permissions": [
    "<all_urls>"
  ]
}