Disable BTTV / FFZ / Twitch emotes in chat?

I saw in another topic that you can use

.emoticon {
display: none;
}

To disable emoticons from being shown. Can you selectively disable some sets of emotes? For example, if I wanted to only display Twitch emotes in the chat rather than those from all three services? Or only Twitch and FFZ, or only Twitch and BTTV, etc.

For Twitch:
img[src*="//static-cdn.jtvnw.net"]{ display:none; }

For BetterTTV:
img[src*="//cdn.betterttv.net"]{ display:none; }

For FFZ:
img[src*="//cdn.frankerfacez.com"]{ display:none; }

1 Like

Awesome, thank you!!

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.