如何隐藏触碰弹幕时显示的点赞、复制、举报浮层? #2917
Answered
by
the1812
ZzzzzzzSkyward
asked this question in
提问 / Q&A
-
如题,理论上只需要一条css规则 .bpx-player-dialog-wrap{
display:none!important;
} 但我应该如何添加? |
Beta Was this translation helpful? Give feedback.
Answered by
the1812
Jan 27, 2022
Replies: 2 comments 1 reply
-
其实只要开启本脚本的一些功能后这个浮层就没了(即无法点赞、举报、复制弹幕)…… |
Beta Was this translation helpful? Give feedback.
1 reply
-
视频区的话脚本是强制屏蔽的, 番剧区你可以自己在控制台 (Ctrl + Shift + I) 加个样式 bilibiliEvolved.pluginApis.installStyle({ name: 'hideBangumiDanmakuTip', displayName: '隐藏番剧区弹幕浮层', style: `
.bpx-player-dialog-wrap {
display: none !important;
}
`}) |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
ZzzzzzzSkyward
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
视频区的话脚本是强制屏蔽的, 番剧区你可以自己在控制台 (Ctrl + Shift + I) 加个样式