-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
42 lines (41 loc) · 1.18 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<script
src="https://extension-files.twitch.tv/helper/v1/twitch-ext.min.js"
type="text/javascript"
></script>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Spectral:wght@500;700&display=swap" rel="stylesheet">
<link rel="icon" href="/favicon.ico">
<title>W3Champions Twitch Extension</title>
<style>
body {
font-family: 'Spectral', serif;
color: white;
background-color: #333;
}
a {
padding: 20px;
color: white;
font-size: xx-large;
}
</style>
</head>
<body style="background-color: #333;">
<noscript>
<strong>We're sorry but this doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
</noscript>
<div>
<p>
<a href="/config.html">Config</a>
</p>
<p>
<a href="/video_overlay.html">Overlay</a>
</p>
</div>
</body>
</html>