自动隐藏B站直播某些分区的马赛克 #4634
z78966789
started this conversation in
功能建议 / Ideas
Replies: 2 comments 2 replies
-
用 Stylus 建个样式吧 (来自 #4736 (comment)) .web-player-module-area-mask {
backdrop-filter: none !important;
} |
Beta Was this translation helpful? Give feedback.
1 reply
-
stylus和adblock直接屏蔽都不可用,提示涉嫌违规操作,b站貌似会有检测 在还没有正式加入脚本前可以自己写个油猴脚本 // ==UserScript==
// @name New Userscript
// @namespace A1ca7raz
// @version 2024-02-15
// @description try to take over the world!
// @author You
// @match *://live.bilibili.com/*
// @icon https://live.bilibili.com/
// @grant none
// ==/UserScript==
(function() {
'use strict'
setTimeout(() => {
document.getElementsByClassName("web-player-module-area-mask")[0].remove()
}, 1300)
})(); |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
具体功能如下图:
虽然我不懂网页开发,但想必各位大佬一看就知道怎么搞了吧,只不过是做一个自动隐藏元素的操作应该不会难吧。
Beta Was this translation helpful? Give feedback.
All reactions