Skip to content

No End Screen by 136MasterNR

Details

Author136MasterNR

LicenseNo License

Categoryyoutube.com

Created

Updated

Size699 B

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

Remove end screen and video suggestions from the video player, making the last second of the video visible.

Notes

Userstyle doesn't have notes.

Source code

/* ==UserStyle==
@name           No End Screen
@namespace      github.com/openstyles/stylus
@version        1.0.0
@description    Remove end screen from the video player, making the last second of the video visible. (does not remove suggestions)
@author         136MasterNR
==/UserStyle== */

@-moz-document domain("youtube.com") {
   .video-stream.html5-main-video {
      top: 0!important; /* Make player always visible */
      object-fit: contain !important;  /* Fix size of player when video ends */
   }
   
   .html5-endscreen:hover {
      transition: opacity 0.15s ease-in-out;
   }
   
   .html5-endscreen:not(:hover) {
      opacity: 0;
      transition: opacity 0.15s ease-in-out;
   }
}

Reviews

No reviews yet.