Bilibili Live Tasks Helper

Enhancing the experience of watching Bilibili live streaming.

< Feedback on Bilibili Live Tasks Helper

Question/comment

§
Posted: 2022-04-19

好快就到2000关注了有没有 可以 快速取关 又能不会把 自己喜欢的up取消关注鸭

Deleted user 910493
§
Posted: 2022-05-05

登录B站,打开我的关注页面
按F12进入Dev tools,打开Console界面
粘贴下面的代码,回车,可以取消当前页的所有关注


var ms = 250; // 暂停250毫秒
var ii = 0;
var xx = $(".be-dropdown-item:contains('取消关注')");
console.log("本页关注了", xx.length, "个up主!");
tt = setInterval(function(){
if (0 <= ii && ii < xx.length) {
xx[ii].click(); // 自动点击【取消关注】
} else {
clearInterval(tt); // 停止批量操作
console.log("OK!你已取消了对本页所有up主的关注!");
}
ii += 1;
}, ms+ii*10); // 暂停多少毫秒,再执行下一次点击,时间间隔增加一点儿变化

§
Posted: 2022-05-24

可以用天选时刻设置那一栏最下面的编辑白名单和取关不在白名单内的up主这两个功能实现

Post reply

Sign in to post a reply.