隐藏新版哔哩哔哩的加载界面,直接显示视频内容。
// ==UserScript== // @name 跳过哔哩哔哩新加载界面 // @namespace ckylin-prevent-new-loading-screen // @version 0.1 // @description 隐藏新版哔哩哔哩的加载界面,直接显示视频内容。 // @author CKylinMC // @run-at document-start // @match *.bilibili.com/* // @grant none // ==/UserScript== (function() { var style = document.createElement("style"); style.innerHTML = ".bilibili-player-video-wrap .bilibili-player-video-panel {display: none!important;}"; document.head.appendChild(style); })();