跳过哔哩哔哩新加载界面

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

安装此脚本?
作者推荐脚本

您可能也喜欢哔哩哔哩-评论过滤

安装此脚本
// ==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);
})();