Greasy Fork 支持简体中文。

YouTube - Fix Fullscreen Scrollbar

Hides YouTube fullscreen player's scrollbar that appeared in Firefox 86

目前為 2021-03-02 提交的版本,檢視 最新版本

  1. // ==UserScript==
  2. // @name YouTube - Fix Fullscreen Scrollbar
  3. // @namespace cprn
  4. // @version 0.1
  5. // @description Hides YouTube fullscreen player's scrollbar that appeared in Firefox 86
  6. // @author cprn
  7. // @match https://*.youtube.com/*
  8. // @match http://*.youtube.com/*
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. var css = document.createElement("style");
  13. css.innerHTML="ytd-app { --ytd-app-fullerscreen-scrollbar-width: 11px; }";
  14. document.head.appendChild(css);