// ==UserScript== // @name Chzzk Enhancements // @namespace http://tampermonkey.net/ // @version 2023-12-19 // @description 치지직 유저 스크립트입니다. // @author You // @match https://chzzk.naver.com/live/* // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== // @grant GM_addStyle // ==/UserScript== GM_addStyle(` div[class^="live_chatting_list_item"] { overflow-anchor: none; } div[class^="live_chatting_list_item"]:nth-child(6n) span[class^="live_chatting_username_nickname"] { color: rgb(219, 74, 63); } div[class^="live_chatting_list_item"]:nth-child(6n + 1) span[class^="live_chatting_username_nickname"] { color: rgb(95, 158, 160); } div[class^="live_chatting_list_item"]:nth-child(6n + 2) span[class^="live_chatting_username_nickname"] { color: rgb(218, 165, 32); } div[class^="live_chatting_list_item"]:nth-child(6n + 3) span[class^="live_chatting_username_nickname"] { color: rgb(0, 255, 127); } div[class^="live_chatting_list_item"]:nth-child(6n + 4) span[class^="live_chatting_username_nickname"] { color: rgb(180, 84, 255); } div[class^="live_chatting_list_item"]:nth-child(6n + 5) span[class^="live_chatting_username_nickname"] { color: rgb(30, 144, 255); } div.pzp-pc__video { pointer-events: none; } `);