YouTube Super Fast Chat

Ultimate Performance Boost for YouTube Live Chats

< Відгуки до YouTube Super Fast Chat

Question/comment

§
Опубліковано: 03.01.2024

is there any option to hide chat user profile icon ?

if no, any chance u can implement it ?

thx

§
Опубліковано: 05.01.2024
Edited: 05.01.2024

This option is not in this script.

Currently I have made this script - https://greasyfork.org/en/scripts/457391-youtube-chat-tints

It can change the icon size, and make it very small, but no option to fully hide it.

You can use UserStyle (Stylus) to run it. You can also just add this.

/* ==UserStyle==
@name           YouTube: No Chat Author Icon
@namespace      github.com/openstyles/stylus
@version        0.1.0
@description    A new userstyle
@author         Me
==/UserStyle== */

@-moz-document domain("youtube.com") {

    .style-scope.yt-live-chat-item-list-renderer#items #author-photo {

        display:none !important;
    }

}

(This YouTube Super Fast Chat is not intended for design feature changing.)

§
Опубліковано: 05.01.2024

ok, im using this script. i combine it with your youtube chat color names stylus. thx.

btw, is there any easy code/script to make chat display lines with alternating background colors, like the image below ?
this is from twitch FFZ btw.

§
Опубліковано: 23.02.2024
  1. Update this script to the latest version.

  2. Add following to stylus.

/* ==UserStyle==
@name           YouTube: Alternating Background Color
@namespace      github.com/openstyles/stylus
@version        0.1.0
@description    A new userstyle
@author         Me
==/UserStyle== */


@-moz-document url-prefix("https://www.youtube.com/live_chat") {


    yt-live-chat-text-message-renderer.yt-chat-item-even[class] {
        background-color: var(--yt-live-chat-message-background-color);
    }


    yt-live-chat-text-message-renderer.yt-chat-item-odd[class] {
        background-color: var(--yt-live-chat-message-highlight-background-color);
    }


}

Опублікувати відповідь

Sign in to post a reply.