This repository has been archived by the owner on Apr 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpopup.html
68 lines (62 loc) · 2.22 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html>
<head>
<title>Popup</title>
<style>
@import url(https://fonts.googleapis.com/css?family=Ubuntu:400,300,500);
body {
width: 500px;
height: 450px;
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
color: white;
background: #2c2e30;
}
a {
color: #cccccc;
text-decoration: bold;
}
a:hover {
color: #ffffff;
text-decoration: bold underline;
}
p {
font-size: 14px;
margin-top: 20px;
}
#disclaimer {
font-size: 10px;
margin-top: 20px;
}
#update-warn {
font-size: 14px;
margin-top: 20px;
color: #ff0000;
}
#updateButton {
margin-top: 20px;
padding: 10px;
border-radius: 5px;
border: none;
background: #ff0000;
color: white;
font-size: 14px;
font-weight: bold;
cursor: pointer;
}
</style>
<script src="checkforupdate.js"></script>
</head>
<body>
<h1>Need help? See our <a href="https://lyubomirt.github.io/c.ai-addons/" target="_blank">documentation</a>!</h1>
<p>This is an open-source project started by <a href="https://lyubomirt.github.io/" target="_blank">LyubomirT</a>. Our goal is to provide a free and open-source alternative to the commercial addons for the Character.ai platform. Of course, the project would not be possible without the help of the community. If you want to contribute, please visit our <a href="https://github.com/LyubomirT/c.ai-addons" target="_blank">GitHub repository</a>.</p>
<b><p>Thank you for using C.AI Addons!</p></b>
<p id="disclaimer">We are not affiliated, associated, authorized, endorsed by, or in any way officially connected with Character.ai, or any of its subsidiaries or its affiliates.</p>
<!-- Divider -->
<hr>
<p>Current version: <b id="currentVersion">0.8.6</b></p>
<p>Latest version: <b id="latestVersion"></b></p>
<p id="update-warn"></p>
<button id="updateButton">Check for updates</button>
</body>
</html>