您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
自动关闭哔哩哔哩 HTML5 播放器弹幕.
当前为
// ==UserScript== // @name bilibili Default Disable Danmaku // @name:zh-CN bilibili 默认关闭弹幕 // @description Auto disable bilibili HTML5 player danmaku. // @description:zh-CN 自动关闭哔哩哔哩 HTML5 播放器弹幕. // @namespace bilibili-danmaku-disabler // @version 2.0 // @author kazetoyuki // @match *://www.bilibili.com/video/* // @match *://www.bilibili.com/bangumi/play/* // @match *://live.bilibili.com/* // @run-at document-end // @require https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js // @require https://gf.qytechs.cn/scripts/48306-waitforkeyelements/code/waitForKeyElements.js?version=275769 // ==/UserScript== /* For New HTML5 Player */ function disable_danmaku_new () { document.querySelector ("input.bui-checkbox").click (); } /* For Old HTML5 Player */ function disable_danmaku_old () { document.querySelector ("i.icon-24danmuon").click (); } /* For Live HTML5 Player */ function disable_danmaku_live () { document.querySelector ("i.live-icon-danmaku-on").click (); } waitForKeyElements ("input.bui-checkbox:checked", disable_danmaku_new, false); waitForKeyElements ("i.icon-24danmuon", disable_danmaku_old, false); waitForKeyElements ("i.live-icon-danmaku-on", disable_danmaku_live, false);
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址