FetchV - Video Downloader for m3u8 & hls

FetchV - Video Downloader for m3u8 & hls

Easily save online videos such as m3u8, live streams, mp4, webm, etc. to your computer.

Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_manifest_name__",
  "short_name": "FetchV",
  "version": "2.2",
  "description": "__MSG_manifest_description__",
  "icons": {
    "16": "img/icon-16.png",
    "48": "img/icon-48.png",
    "128": "img/icon-128.png"
  },
  "background": {
    "service_worker": "service-worker.js"
  },
  "action": {
    "default_icon": {
      "16": "img/icon-16.png",
      "48": "img/icon-48.png",
      "128": "img/icon-128.png"
    },
    "default_title": "__MSG_manifest_browser_action__",
    "default_popup": "panel/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://fetchv.net/m3u8downloader*",
        "*://fetchv.net/*/m3u8downloader*"
      ],
      "js": [
        "libs/hls.js",
        "js/hls.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://fetchv.net/videodownloader*",
        "*://fetchv.net/*/videodownloader*"
      ],
      "js": [
        "js/mp4.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://fetchv.net/bufferrecorder*",
        "*://fetchv.net/*/bufferrecorder*"
      ],
      "js": [
        "js/rec.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*/*"
      ],
      "exclude_globs": [
        "*//fetchv.net/*"
      ],
      "js": [
        "js/content-script.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "*://fetchv.net/*"
      ],
      "resources": [
        "img/recording.svg",
        "bootstrap/js/bootstrap.bundle.min.js",
        "libs/jsZIP.js",
        "panel/hls.html",
        "panel/mp4.html",
        "panel/rec.html"
      ]
    },
    {
      "matches": [
        "*://*/*"
      ],
      "resources": [
        "js/injected.js"
      ]
    }
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "permissions": [
    "tabs",
    "webRequest",
    "storage",
    "declarativeNetRequest",
    "offscreen"
  ],
  "homepage_url": "https://fetchv.net/",
  "default_locale": "en",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}