Skip to content

Hide youtube shit by vallek

Details

Authorvallek

LicenseNo License

Categoryyoutube.com

Created

Updated

Size1.4 kB

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

Hide annoying shit on youtube

Notes

My Youtube userstyle to hide annoying shit

What it hides

on videos page

  • round corners
  • shadow behind ui controls
  • next video button

on search results page

  • shorts
  • suggestions
  • crisis panel (if you want it just remove "ytd-emergency-onebox-renderer" class and comma before)

on subscriptions page

  • shorts
  • top ui panel (same class as shorts but useless and too tall anyways)

Source code

/* ==UserStyle==
@name           youtube.com - 8/24/2024, 10:15:51 PM
@namespace      github.com/openstyles/stylus
@version        1.3.4
@description    Hide annoying shit on youtube
@author         Vallek
==/UserStyle== */

@-moz-document url-prefix("https://www.youtube.com/watch?") {
  /* No round corners */
  #ytd-player.ytd-watch-flexy {
    border-radius: unset !important;
  }
  /* Hide controls shadow, next button */
  .ytp-gradient-bottom,
  .ytp-next-button {
    display: none !important;
  }
  .ytp-timed-markers-container,
  .ytp-chapter-hover-container.ytp-exp-chapter-hover-container,
  .ytp-volume-slider-handle {
    box-shadow: 0 0 2px rgba(0,0,0,.5);
  }
  .ytp-time-wrapper,
  .ytp-chapter-title-content {
    text-shadow: 0 0 2px rgba(0,0,0,1) !important;
  }
  /* Hide shorts from sidebar */
  ytd-reel-shelf-renderer {
    display: none !important;
  }
}

@-moz-document url-prefix("https://www.youtube.com/results?search_query=") {
  /* Hide shorts, suggestions and crisis panel from search results */
  ytd-shelf-renderer,
  ytd-reel-shelf-renderer.ytd-item-section-renderer,
  ytd-emergency-onebox-renderer {
    display: none !important;  
  }
}

@-moz-document url-prefix("https://www.youtube.com/feed/subscriptions") {
  /* Hide shorts and top ui panel from subs page */
  ytd-rich-section-renderer {
    display: none !important;
  }
}

Reviews

No reviews yet.