B站学习助手 - Bilibili Video Timer

B站学习助手 - Bilibili Video Timer

贴心的学习计划制定助手(●ˇ∀ˇ●),能够计算分集视频任意区间内的总时长和总览进度,以及为视频列表项目打上你的标记✨

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "B站学习助手 - Bilibili Video Timer",
  "version": "2.1.1",
  "manifest_version": 3,
  "description": "贴心的学习计划制定助手(●ˇ∀ˇ●),能够计算分集视频任意区间内的总时长和总览进度,以及为视频列表项目打上你的标记✨",
  "icons": {
    "16": "icons/timeline.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "icons/timeline.png"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "contextMenus",
    "storage",
    "notifications"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.bilibili.com/video/*"
      ],
      "js": [
        "./js/content.js",
        "./js/calTime.js"
      ]
    }
  ],
  "options_page": "options.html",
  "background": {
    "service_worker": "js/background.js"
  },
  "author": "Whimmey",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}