FastStream Video Player

FastStream Video Player

Stream without buffering, a great video player and download accelerator all in one.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "default_locale": "en",
  "name": "__MSG_extension_name__",
  "description": "__MSG_extension_description__",
  "version": "1.3.7",
  "author": "Andrew S",
  "options_ui": {
    "page": "player/options/index.html",
    "open_in_tab": false
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "action": {
    "default_icon": "icon128.png",
    "default_title": "__MSG_extension_toggle_label__"
  },
  "background": {
    "scripts": [
      "background/background.mjs"
    ],
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.bilibili.com/*",
        "https://www.bilibili.tv/*"
      ],
      "all_frames": true,
      "run_at": "document_end",
      "js": [
        "custom/bilibili_content.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "run_at": "document_start",
      "js": [
        "content.js"
      ]
    }
  ],
  "permissions": [
    "storage",
    "tabs",
    "webRequest",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "player/index.html",
        "player/options/index.html",
        "temp/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "faststream@andrews",
      "strict_min_version": "113.0"
    }
  }
}