🏠 Home 

跳过哔哩哔哩新加载界面

隐藏新版哔哩哔哩的加载界面,直接显示视频内容。


Install this script?
Author's suggested script

You may also like 哔哩哔哩-评论过滤.


Install this script
// ==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);
})();