Youtube SHORTS Disabler

Simply hides all Shorts from Youtube

目前为 2022-08-30 提交的版本。查看 最新版本

  1. /* ==UserStyle==
  2. @name Youtube SHORTS Disabler
  3. @namespace https://greasyfork.org/en/users/153478-greasyshiny
  4. @version 1.0
  5. @description Simply hides all Shorts from Youtube
  6. @author GreasyShiny
  7.  
  8. ==/UserStyle== */
  9. @-moz-document domain("youtube.com") {
  10.  
  11. /* SHORTS DISABLER. Possible via the :has selector, available in Chrome, starting with version 105. */
  12.  
  13. ytd-grid-video-renderer.ytd-grid-renderer:has(ytd-thumbnail-overlay-time-status-renderer[overlay-style=SHORTS]) {
  14. display:none !important
  15. }
  16. }