YouTube - Fix Fullscreen Scrollbar

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

  1. // ==UserScript==
  2. // @name YouTube - Fix Fullscreen Scrollbar
  3. // @namespace cprn
  4. // @version 0.2
  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 !important; }";
  14. document.head.appendChild(css);