沟槽的默认弹幕云屏蔽 #4828
Closed
KuiPer-LTW
started this conversation in
功能建议 / Ideas
沟槽的默认弹幕云屏蔽
#4828
Replies: 4 comments 12 replies
-
这个也是灰度测试的内容,目前改一下
|
Beta Was this translation helpful? Give feedback.
0 replies
-
怎么会有这种迷惑功能。。。 |
Beta Was this translation helpful? Give feedback.
0 replies
-
是灰测,会直接把禁用弹幕等级屏蔽的勾选框给你干掉 还是用脚本解决,但不知道能撑多久 // ==UserScript==
// @name 禁用弹幕屏蔽灰测
// @namespace http://tampermonkey.net/
// @version 2024-07-07
// @description 禁用弹幕屏蔽灰测
// @author You
// @match https://www.bilibili.com/video/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=bilibili.com
// @grant none
// @run-at document-start
// ==/UserScript==
(function () {
"use strict";
let origValue = window.webAbTest;
if (origValue) {
origValue.danmuku_block_version = "OLD";
}
Object.defineProperty(window, "webAbTest", {
get() {
return origValue;
},
set(value) {
if (value) {
value.danmuku_block_version = "OLD";
}
origValue = value;
}
});
})(); |
Beta Was this translation helpful? Give feedback.
5 replies
-
现在的 /*! @metadata nano: 4.8.47-rc.7958.0-0a64e57c (2024-09-13T10:25:34+08:00) */
Object.defineProperty(t.prototype, 'aiLevel', {
get: function () {
return this.state.dmarea < 100 && this.state.dmarea > 0
? 3
: this.state.dmdensity === n.most || this.state.dmdensity === n.more
? 2
: this.state.dmdensity === n.normal
? 3
: void 0;
},
enumerable: !1,
configurable: !0,
}); 于是,取消“智能云屏蔽”的可行方法如下: // ==UserScript==
// @name 禁用弹幕智能云屏蔽
// @namespace https://github.com/the1812/Bilibili-Evolved/discussions/4828
// @version 2024-09-14
// @description 禁用弹幕智能云屏蔽
// @author WakelessSloth56
// @match https://www.bilibili.com/video/*
// @grant none
// @run-at document-start
// ==/UserScript==
(function () {
"use strict";
const interval = setInterval(() => {
if (window.player) {
window.player.on(
window.nano.EventType.Player_Play,
() => {
// 每次播放时把弹幕密度设置为 0
const dmSetting = JSON.parse(localStorage.bpx_player_profile).dmSetting;
dmSetting.dmdensity = 0;
window.player.setDanmakuSetting(dmSetting);
}
);
clearInterval(interval);
}
}, 100);
})(); |
Beta Was this translation helpful? Give feedback.
7 replies
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