YouTube 超快聊天

YouTube直播聊天的终极性能提升

< 脚本YouTube 超快聊天的反馈

提问/评论

§
发表于:2024-01-03

is there any option to hide chat user profile icon ?

if no, any chance u can implement it ?

thx

§
发表于:2024-01-05
编辑于: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.)

§
发表于: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.

§
发表于:2024-02-23
  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);
    }


}

发表回复

登录以发表回复。