Initial commit for YouTube Live Chat Overlay project.

This commit is contained in:
Ramforth
2025-11-03 16:40:05 +01:00
commit ba92664fdc
23 changed files with 49577 additions and 0 deletions

16
index.html Normal file
View File

@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>YouTube Live Chat Overlay</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="chat-container">
<!-- Chat messages will be loaded here by JavaScript -->
</div>
<script src="script.js"></script>
</body>
</html>