FetchV:Video Downloader(HLS/m3u8/mp4)

FetchV:Video Downloader(HLS/m3u8/mp4)

Download all kinds of videos online, includes HLS, m3u8, mp4, webm...

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_manifest_name__",
  "short_name": "FetchV",
  "version": "1.3",
  "description": "__MSG_manifest_description__",
  "icons": {
    "16": "img/icon-16.png",
    "48": "img/icon-48.png",
    "128": "img/icon-128.png"
  },
  "background": {
    "scripts": [
      "worker.js"
    ]
  },
  "browser_action": {
    "default_title": "__MSG_manifest_browser_action__",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://fetchv.net/videodownloader",
        "*://fetchv.net/*/videodownloader"
      ],
      "js": [
        "libs/jquery-3.6.0.min.js",
        "libs/mux.video.min.js",
        "js/videodownloader.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://fetchv.net/m3u8downloader",
        "*://fetchv.net/*/m3u8downloader"
      ],
      "js": [
        "libs/jquery-3.6.0.min.js",
        "libs/hls.1.1.2.branch.min.js",
        "libs/mux.m3u8.min.js",
        "js/m3u8downloader.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "tabs",
    "webRequest",
    "webRequestBlocking",
    "storage",
    "http://*/*",
    "https://*/*"
  ],
  "homepage_url": "https://fetchv.net/",
  "options_ui": {
    "page": "./options.html",
    "open_in_tab": true
  },
  "default_locale": "en",
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}