Greasy Fork is available in English.

跳过哔哩哔哩新加载界面

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

Skript installieren?
Vom Ersteller vorgeschlagenes Skript

Ihnen könnte auch 哔哩哔哩-评论过滤 gefallen.

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