Skip to content

Commit

Permalink
feat: video page hide bili-score-sum
Browse files Browse the repository at this point in the history
  • Loading branch information
festoney8 committed Apr 17, 2024
1 parent 1972556 commit b5dcd0f
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## 3.4.6

- 优化:优化评论区净化规则
- 新增:隐藏播放器内评分总结弹窗

## 3.4.5

Expand Down
14 changes: 10 additions & 4 deletions src/rules/video.ts
Original file line number Diff line number Diff line change
Expand Up @@ -329,22 +329,28 @@ if (isPageVideo() || isPagePlaylist() || isPageBnj()) {
description: '隐藏 评分弹窗',
itemCSS: `.bpx-player-video-area .bili-score {display: none !important;}`,
}),
// 隐藏 评分总结弹窗
new CheckboxItem({
itemID: 'video-page-hide-bpx-player-bili-score-sum',
description: '隐藏 评分总结弹窗',
itemCSS: `.bpx-player-video-area .bili-scoreSum {display: none !important;}`,
}),
// 隐藏 打卡弹窗
new CheckboxItem({
itemID: 'video-page-hide-bpx-player-bili-clock',
description: '隐藏 打卡弹窗',
itemCSS: `.bpx-player-video-area .bili-clock {display: none !important;}`,
}),
// 隐藏 视频预告
// 隐藏 视频预告弹窗
new CheckboxItem({
itemID: 'video-page-hide-bpx-player-bili-reserve',
description: '隐藏 视频预告',
description: '隐藏 视频预告弹窗',
itemCSS: `.bpx-player-video-area .bili-reserve {display: none !important;}`,
}),
// 隐藏 视频链接
// 隐藏 视频链接弹窗
new CheckboxItem({
itemID: 'video-page-hide-bpx-player-bili-link',
description: '隐藏 视频链接(稍后再看)',
description: '隐藏 视频链接弹窗(稍后再看)',
itemCSS: `.bpx-player-video-area .bili-link {display: none !important;}`,
}),
// 隐藏 左上角 播放器内标题
Expand Down

0 comments on commit b5dcd0f

Please sign in to comment.