Examine source code of 专业视频下载助手(HLSm3u8mp4blob)

Inspect and view changes in 专业视频下载助手(HLSm3u8mp4blob) source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "action": {
    "default_icon": {
      "16": "img/icon-16.png",
      "48": "img/icon-48.png",
      "128": "img/icon-128.png"
    },
    "default_popup": "popup.html",
    "default_title": "__MSG_manifest_browser_action__"
  },
  "background": {
    "service_worker": "worker.js"
  },
  "content_scripts": [
    {
      "js": [
        "libs/jquery-3.6.0.min.js",
        "libs/mux.video.min.js",
        "js/videodownloader.js"
      ],
      "matches": [
        "*://fetchv.net/videodownloader",
        "*://fetchv.net/*/videodownloader"
      ],
      "run_at": "document_end"
    },
    {
      "js": [
        "libs/jquery-3.6.0.min.js",
        "libs/hls.1.1.2.branch.min.js",
        "libs/mux.m3u8.min.js",
        "js/m3u8downloader.js"
      ],
      "matches": [
        "*://fetchv.net/m3u8downloader",
        "*://fetchv.net/*/m3u8downloader"
      ],
      "run_at": "document_end"
    },
    {
      "js": [
        "libs/jquery-3.6.0.min.js",
        "libs/mux.buffer.min.js",
        "js/bufferrecorder.js"
      ],
      "matches": [
        "*://fetchv.net/bufferrecorder",
        "*://fetchv.net/*/bufferrecorder"
      ],
      "run_at": "document_end"
    },
    {
      "exclude_globs": [
        "*//fetchv.net/*"
      ],
      "js": [
        "js/content-script.js",
        "js/jquery.js",
        "js/m3u8.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "default_locale": "zh_CN",
  "description": "__MSG_manifest_description__",
  "homepage_url": "https://fetchv.net/",
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "icons": {
    "16": "img/icon-16.png",
    "48": "img/icon-48.png",
    "128": "img/icon-128.png"
  },
  "manifest_version": 3,
  "name": "__MSG_manifest_name__",
  "options_page": "./options.html",
  "optional_permissions": [
    "declarativeNetRequestWithHostAccess"
  ],
  "permissions": [
    "tabs",
    "webRequest",
    "storage",
    "scripting"
  ],
  "short_name": "FetchV",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx",
  "version": "17.0.1",
  "web_accessible_resources": [
    {
      "matches": [
        "*://*/*"
      ],
      "resources": [
        "js/injected.js"
      ],
      "use_dynamic_url": true
    }
  ]
}