哔哩哔哩直播 html5 播放器

哔哩哔哩直播 html5 播放器

本扩展基于 flv.js ,用于将直播的 Flash 播放器替换为 html5 播放器。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "哔哩哔哩直播 html5 播放器",
  "description": "本扩展基于 flv.js ,用于将直播的 Flash 播放器替换为 html5 播放器。",
  "version": "0.0.4",
  "permissions": [
    "*://live.bilibili.com/*"
  ],
  "web_accessible_resources": [
    "src/danmaku.min.js",
    "src/flv.min.js",
    "src/live.js",
    "src/run.js",
    "src/danmaku-player.css"
  ],
  "icons": {
    "16": "img/icon-16.png",
    "32": "img/icon-32.png",
    "48": "img/icon-48.png",
    "128": "img/icon-128.png"
  },
  "browser_action": {
    "default_icon": "img/icon-48.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://live.bilibili.com/*"
      ],
      "js": [
        "src/run.js"
      ],
      "run_at": "document_end"
    }
  ]
}