Addidng chat_listener function for Twitch, adding custom overlay template for testing.

This commit is contained in:
2025-11-17 14:46:50 +01:00
parent 98cda57d90
commit 4013d3d23d
6 changed files with 119 additions and 4 deletions

View File

@@ -0,0 +1,30 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Live Test Overlay</title>
<style>
body {
background-color: black;
color: white;
font-family: sans-serif;
margin: 0;
padding: 20px;
}
.message {
margin-bottom: 10px;
}
</style>
</head>
<body>
<h1>Live Test Overlay</h1>
<div id="chat-messages">
<!-- Messages will appear here -->
</div>
<script>
// JavaScript to connect to WebSocket and display messages will go here
</script>
</body>
</html>