Ultimate Video Downloader

Ultimate Video Downloader

Ultimate Video Downloader for popular media platforms! Downloader video for Facebook, Instagram, etc. The video downloader you need!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "description": "__MSG_extDesc__",
  "default_locale": "en",
  "version": "1.3",
  "manifest_version": 3,
  "action": {
    "default_icon": "images/icon32.png",
    "default_title": "__MSG_extName__",
    "default_popup": "popup.html"
  },
  "icons": {
    "32": "images/icon32.png",
    "64": "images/icon64.png",
    "128": "images/icon128.png"
  },
  "background": {
    "service_worker": "js/service_worker.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "*://*/*"
      ],
      "js": [
        "./js/content.js"
      ],
      "css": [
        "./css/App.css",
        "./css/sidebar.css"
      ],
      "all_frames": true
    }
  ],
  "permissions": [
    "downloads",
    "storage",
    "webRequest",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset_1",
        "enabled": true,
        "path": "rules.json"
      }
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}