Video Downloader Pro

Video Downloader Pro

Video Downloader Pro helps you download online videos in various formats, such as m3u8, mp4, webm, etc., to your computer.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "0.4.3",
  "name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "manifest_version": 3,
  "default_locale": "en",
  "icons": {
    "16": "assets/icons/icon_16.png",
    "32": "assets/icons/icon_32.png",
    "64": "assets/icons/icon_64.png",
    "128": "assets/icons/icon_128.png"
  },
  "action": {
    "default_title": "__MSG_extName__",
    "default_icon": {
      "16": "assets/icons/icon_16.png",
      "32": "assets/icons/icon_32.png"
    },
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "js/background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/allUrl.js"
      ],
      "run_at": "document_end",
      "exclude_matches": [
        "*://*.vimeo.com/*",
        "*://*.dailymotion.com/*",
        "*://*.vk.com/*",
        "*://*.instagram.com/*",
        "*://*.facebook.com/*",
        "*://*.tiktok.com/*",
        "*://*.twitter.com/*",
        "*://*.youtube.com/*"
      ]
    },
    {
      "matches": [
        "*://*.dailymotion.com/*"
      ],
      "js": [
        "js/dailymotion.js"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "*://*.vimeo.com/*"
      ],
      "js": [
        "./js/vimeo.js"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "*://*.instagram.com/*"
      ],
      "js": [
        "./js/instagram.js"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "*://*.facebook.com/*"
      ],
      "js": [
        "./js/facebook.js"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "*://*.tiktok.com/*"
      ],
      "js": [
        "./js/tiktok.js"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "*://*.twitter.com/*"
      ],
      "js": [
        "./js/twitter.js"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "./js/youtube.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "permissions": [
    "storage",
    "webRequest",
    "tabs",
    "downloads"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "js/instagramStory.js",
        "js/instagram.js",
        "js/ytScript.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ]
}