// ==UserScript== // @name 哔哩哔哩bilibili默认关闭弹幕 // @description Bilibili html5播放器默认关闭弹幕 // @author wly5556 // @version 2.0 // @match *://*.bilibili.com/video/* // @grant none // @run-at document-end // @namespace wly5556 // @downloadURL none // ==/UserScript== (function () { var count = 0; function foo() { if (count++ < 20) { var button_old = document.querySelector(".icon-24danmuon"); var button_new = document.querySelector(".bui-checkbox"); if (button_old) button_old.click(); else if(button_new) button_new.checked = false; else setTimeout(foo, 300); } } setTimeout(foo, 300); })();