Skip to content

Youtube clean by sonho

Details

Authorsonho

LicenseNo License

Categoryyoutube.com

Created

Updated

Size2.0 kB

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

Removes ads, members only, voice search button
Live videos, the chat is moved to hover above the video but can be hidden by closing the chat window using the X

Notes

Userstyle doesn't have notes.

Source code

/* ==UserStyle==
@name         Youtube clean
@version      20241208.11.44
@namespace    https://userstyles.world/user/sonho
@description  Removes ads, members only, voice search button
@author       sonho
==/UserStyle== */
@-moz-document domain("www.youtube.com") {

  /* Hide ads */
  ytd-rich-item-renderer:has(.ytd-ad-inline-playback-meta-block) {
    display: none;
  }

  /* Hide members only */
  ytd-rich-item-renderer:has([aria-label="Members only"]) {
    display: none;
  }

  ytd-ad-slot-renderer {
    display: none;
  }

  #voice-search-button {
    display: none;
  }

  #secondary:has(#chat-container) {
    position: initial;
  }

  #chat-container {
    /*     display: none; */
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 100000;
    margin-left: 5em;
    margin-bottom: 14em;
  }

  /*   ytd-live-chat-frame #show-hide-button {
    opacity: 0;
    transition: all linear; 
  }
  ytd-live-chat-frame #show-hide-button:hover {
    opacity: 1;
  } */
}


@-moz-document url-prefix("https://www.youtube.com/live_chat") {
  yt-live-chat-renderer,
  yt-live-chat-header-renderer {
    background: #00000073;
  }

  yt-live-chat-renderer:hover {
    background: var(--yt-live-chat-background-color);
  }

  yt-live-chat-renderer:hover yt-live-chat-header-renderer {
    background: var(--yt-live-chat-header-background-color, var(--yt-deprecated-opalescence-soft-grey-opacity-lighten-3))
  }
  yt-live-chat-text-message-renderer {
    text-shadow: 1px 1px 3px black;
    font-size: 1.2em;
  }

  /*   .chat-line__message, .vod-message {
  text-shadow: 1px 1px 5px black;
  font-size: 1.2em; 
  background: #00000024;
} */
  /*   #chat-messages {
    opacity: 0.5;
  }
  
  #chat-messages:hover {
    opacity: 1;
  }
 */
  #chat-messages:hover #live-chat-message-input {
    opacity: 1;
  }

  #live-chat-message-input {
    opacity: 0;
  }


  #chat .yt-live-chat-viewer-engagement-message-renderer {
    display: none;
  }
}

Reviews

No reviews yet.