YouTube - Hide End Cards (unless hovering)

Hides those big links that sometimes show up over the endings of videos -- unless you hover over the player.

  1. /* ==UserStyle==
  2.  
  3. @name YouTube - Hide End Cards (unless hovering)
  4. @description Hides those big links that sometimes show up over the endings of videos -- unless you hover over the player.
  5. @namespace lednerg
  6. @version 20.10.11
  7. @author lednerg
  8. @license CC-BY-NC-SA-4.0
  9.  
  10. ==/UserStyle== */
  11.  
  12. @-moz-document domain("youtube.com") {
  13.  
  14. div[class*="video-player"]:not(:hover) div[class^="ytp-ce"],
  15. div[class*="ytp-autohide"] div[class^="ytp-ce"] {
  16. display: none !important;
  17. }
  18. }