Up Index Q icon

Up Index Q

Extension Actions

CRX ID
edboahfhanicclahijnndijdiemofcdn
Status
  • Live on Store
Description from extension meta

For Bilibili videos - Up index is the percentage (%) of likes in view count

Image from store
Up Index Q
Description from store

哔哩哔哩(B站)的视频没有 Dislike 功能,所以我们引入了 Up index 来显示视频点赞数在观看次数中的百分比 :)

- Up index 🍸
Up index % = 点赞数 / 播放数 * 100%

- 代码中的计算方法
let upIndex = viewCount === 0 ? 0 : ((likes / viewCount) * 100).toFixed(1);