B站bilibil弹幕下载生成ASS字幕

B站bilibil弹幕下载生成ASS字幕

下载bilibili/B站的弹幕,生成供本地播放器使用的ass字幕文件

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "B站bilibil弹幕下载生成ASS字幕",
  "short_name": "B站弹幕下载",
  "version": "1.3.3",
  "description": "下载bilibili/B站的弹幕,生成供本地播放器使用的ass字幕文件",
  "permissions": [
    "activeTab",
    "storage",
    "scripting"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.bilibili.com/*"
      ],
      "js": [
        "FileSave.js",
        "jszip.min.js",
        "protobuf.min.js",
        "Sortable.min.js",
        "content.js",
        "combine.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "progress.html",
        "logging.html",
        "combine.html"
      ],
      "matches": [
        "https://www.bilibili.com/*"
      ]
    }
  ],
  "icons": {
    "16": "images/16.png",
    "48": "images/48.png",
    "128": "images/128.png"
  },
  "action": {
    "default_icon": "images/128.png",
    "default_title": "点击下载弹幕",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "manifest_version": 3
}