-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
53 lines (53 loc) · 1.72 KB
/
popup.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
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Stream Companion Info</title>
<style>
body {
font-family: Arial, sans-serif;
width: 250px; /* Set the popup width */
padding: 15px;
box-sizing: border-box;
}
a {
color: #007BFF; /* A bootstrap blue */
text-decoration: none;
font-weight: bold;
}
a:hover {
text-decoration: underline;
}
.header {
font-weight: bold;
font-size: 18px;
margin-bottom: 10px;
}
.description {
margin-bottom: 20px;
}
</style>
</head>
<body>
<div class="header">StreamCompanion.app Extension</div>
<div class="description">
Stream Companion Chrome Extension consists of various tools designed to enhance the experience of watching live streams and video content.
</div>
<div class="description">
Currently, it provides Chromecast support for live streams and VOD on Kick.com. Future updates are planned to include functionality for Twitch and YouTube.
</div>
<div class="description">
Updates:
<ul>
<li>Version 0.1 - Initial release</li>
<li>Version 0.2 - Updated url to avoid ssl error. The chromecast buttons should work now.</li>
<li>Version 0.3 - Updated url. The chromecast buttons should work now.</li>
</ul>
</div>
<div>
For more info, visit our official website: <br>
<a href="https://streamcompanion.app" target="_blank">streamcompanion.app</a>
</div>
</body>
</html>