bilibili直播间显示更多信息

bilibili直播间显示开播时间,直播时长,粉丝数,人气,收益,在线人数,封面,其他关注直播,pk等信息

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

Author
killall
Daily installs
0
Total installs
695
Ratings
8 0 0
Version
3.25
Created
2023-12-30
Updated
2025-09-19
Size
31.1 KB
License
MIT
Applies to
  • 自行调整配置:
let Config = {
  livetime: {
    enable: true,           // 显示直播开始时间,持续时间
  },
  fans: {
    enable: true,           // 显示粉丝,人气,收益
    maxWidth: 450,          // 显示最大宽度(显示有问题才需要考虑改)
    updateInterval: 5000,   // 更新频率(ms)
  },
  rank: {
    //(目前b站官方已经显示在线人数了 2024-05-05)
    //(现在改成显示在聊天框下面 2024-12-13)
    enable: true,           // 显示高能榜(同接)
    updateInterval: 5000,   // 更新频率(ms)
  },
  cover: {
    enable: true,           // 显示直播封面
    location: 'afterbegin', // 封面显示位置(afterbegin,beforeend)
  },
  pk: {
    enable: true,           // 显示pk相关信息
    updateInterval: 5000,   // 更新频率(ms)
  },
  otherLive: {
    enable: true,           // 显示其他关注的直播
    showTime: true,         // 是否在头像下面显示直播时长
    location: 'right',      // 显示位置(left,right)
    opacity: 1.0,           // 透明度
    maxHeight: 550,         // 最大显示高度(px)
    maxCount: 24,           // 最多显示数量
    imgSize: 40,            // 头像大小
    showMode: 1,            // 1始终显示 2鼠标移动到边缘显示 3快捷键切换
    togglekey: '0',         // 切换显示快捷键(仅在showMode=3时有效)
    offset: '90%',          // 显示偏移(仅在showMode=2时有效,数值越大靠边)
    updateInterval: 60000,  // 更新频率(ms)
  },
  debug: {
    enable: false,          // 输出调试信息
  }
}