aerosol

No-nonsense Twitch chat overlay that I use as an OBS browser source, Creative Commons licensed.

Getting Started in OBS Studio

  1. Create a browser source, and position/size it however you’d like. Personally, I like 400x600 px, and that’s where I’ve tested it.
  2. Set the URL to https://addiment.github.io/aerosol/chat/?channel=<CHANNEL>, and change <CHANNEL> to the name of the channel you want to display.

Customization

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>

Features / Issues