YouTube Super Fast Chat

Ultimate Performance Boost for YouTube Live Chats

< Commentaires sur YouTube Super Fast Chat

Question / commentaire

§
Posté le: 2024-01-03

is there any option to hide chat user profile icon ?

if no, any chance u can implement it ?

thx

§
Posté le: 2024-01-05
Édité le: 2024-01-05

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.)

§
Posté le: 2024-01-05

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.

  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);
    }


}

Poster une réponse

Connectez-vous pour poster une réponse.