kuzzyboil
01/27/2026 (Tue) 07:51
No.13195
del
try this vibecoded crap in your JS and see if orangetexting works
Callbacks.chatMsg = function (data) {
let msg = data.msg;
if (msg.startsWith(">")) {
msg =
<span class="orangetext">${CyTube.utils.escapeHTML(msg)}</span>;
} else {
msg = CyTube.utils.escapeHTML(msg);
}
data.msg = msg;
return data;
};