From 44e7cf29640f564110e88aeb118b9644b0b4bbfd Mon Sep 17 00:00:00 2001 From: festoney8 Date: Wed, 21 Aug 2024 15:32:15 +0800 Subject: [PATCH] update: rules --- src/filters/video/video.ts | 2 +- src/rules/live.ts | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/filters/video/video.ts b/src/filters/video/video.ts index 053c5654..e60878b8 100644 --- a/src/filters/video/video.ts +++ b/src/filters/video/video.ts @@ -189,7 +189,7 @@ if (isPageVideo() || isPageBangumi() || isPagePlaylist()) { ) { checkVideoList(fullSite) .then(() => { - checkRelated().then().catch() + isRelatedFilterEnable && checkRelated().then().catch() }) .catch() } diff --git a/src/rules/live.ts b/src/rules/live.ts index c073708c..5509acf3 100644 --- a/src/rules/live.ts +++ b/src/rules/live.ts @@ -236,7 +236,7 @@ if (isPageLiveRoom()) { new CheckboxItem({ itemID: 'live-page-head-info-vm-upper-row-popular', description: '隐藏 人气', - itemCSS: `#head-info-vm .upper-row .right-ctnr div:has(.icon-popular) {display: none !important;}`, + itemCSS: `#head-info-vm .upper-row .right-ctnr div:has(.icon-popular), #LiveRoomHotrankEntries {display: none !important;}`, }), // 隐藏 点赞 new CheckboxItem({ @@ -327,6 +327,8 @@ if (isPageLiveRoom()) { defaultStatus: true, itemCSS: ` .web-player-icon-roomStatus {display: none !important;} + /* 播放器上用途不明的条纹 */ + .blur-edges-ctnr {display: none !important;} /* 部分播放器马赛克 */ .web-player-module-area-mask {backdrop-filter: none !important;}`, }),