Greasy Fork is available in English.
自动屏蔽所有bilibili弹幕
当前为
// ==UserScript==
// @name B站无弹幕
// @namespace http://tampermonkey.net/
// @version 0.10
// @description 自动屏蔽所有bilibili弹幕
// @github https://www.github.com/arryboom/nodanmu
// @author arryboom
// @match *://*.bilibili.com/*
// ==/UserScript==
(function() {
'use strict';
setTimeout(function(){
$("div[class='bilibili-player-video-danmaku-switch bui bui-switch']").children(".bui-checkbox").click();console.log("#####bilibili#####");},3000);
})();