Video Downloader for m3u8 & mp4

Video Downloader for m3u8 & mp4

Extension for downloading m3u8, mp4, webm, etc. videos. Download any video in high quality from any website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "2.6.8",
  "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": "static/js/serviceWorker.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "static/js/otherSitesContent.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": [
        "static/js/dailymotionContent.js"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "*://*.vimeo.com/*"
      ],
      "js": [
        "./static/js/vimeoContent.js"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "*://*.instagram.com/*"
      ],
      "js": [
        "./static/js/instagramContent.js"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "*://*.facebook.com/*"
      ],
      "js": [
        "./static/js/facebookContent.js"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "*://*.tiktok.com/*"
      ],
      "js": [
        "./static/js/tiktokContent.js"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "*://*.twitter.com/*"
      ],
      "js": [
        "./static/js/twitterContent.js"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "./static/js/youtubeContent.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "permissions": [
    "storage",
    "webRequest",
    "webRequestBlocking",
    "tabs",
    "downloads",
    "<all_urls>"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "static/js/instagramStoryScript.js",
        "static/js/instagramContent.js",
        "static/js/ytScript.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ]
}