No-nonsense Twitch chat overlay that I use as an OBS browser source, Creative Commons licensed.
https://addiment.github.io/aerosol/chat/?channel=<CHANNEL>
, and change <CHANNEL> to the name of the channel you want to display.If you’re good with CSS, you should be fine. I recommend reviewing the CSS in index.html
. Individual chat messages are stored in div#chat-box
. Chat message markup looks like this:
<div class="chat-line" data-nick="addiment_lc" data-time="4294967295" data-id="00000000-0000-0000-0000-000000000000">
<div class="badge-box">
<img class="badge">
</div>
<span class="nick" style="color: #ff1040;">addiment_lc</span><span class="separator"></span><span class="message">test message! <img class="emote"></span>
</div>