-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathindex.html
63 lines (61 loc) · 2.37 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<html>
<head>
<meta charset="utf-8" />
<title>ChatAssistX 2.0.5</title>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/jquery-ui.min.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/jquery-ui.min.css" defcss="true" />
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/handlebars.min.js"></script>
<script src="https://lastorder.xyz/chatreader-kor/tmi.min.js?v=20220302-renewal2"></script>
<script src="https://cdn.rawgit.com/Lastorder-DC/referrer-killer/84a087203af378c45782a406a58ad2d588ae36c2/referrer-killer.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/build/alertify.min.js"></script>
<script src="./js/chatassistx/chat-loader.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/build/css/alertify.min.css" defcss="true"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/build/css/themes/default.css" defcss="true"/>
<link rel="stylesheet" href="./jsassist.css" type="text/css" defcss="true" />
<link rel="stylesheet" href="./chatassist.css" type="text/css" defcss="true" />
<link rel="stylesheet" href="./dccon.css" type="text/css" defcss="true" />
<script>
(function(window) {
var url_string = window.location.href;
var url = new URL(url_string);
alertify.set('notifier','position', 'top-center');
window.ChatAssistX.init(url.searchParams.get("config"));
})(window);
</script>
</head>
<body>
<script id="chat-template" type="text/x-handlebars-template">
<div class="chat_div" id="chat_{{num}}">
<span class="chat_platform_{{platform}}"></span>
<span class="chat_text_nickname">
{{{nickname}}}
</span>
<div class="chat_text_message">
{{{message}}}
</div>
</div>
</script>
<script id="chat-template-sticky" type="text/x-handlebars-template">
<div class="fixed_chat">
{{#ifCond nickname notitle}}
<div class="chat_text_message_sticky_logo">
{{{message}}}
</div>
{{else}}
<span class="chat_platform_{{platform}}"></span>
<span class="chat_text_nickname">
{{{nickname}}}
</span>
<div class="chat_text_message_sticky">
{{{message}}}
</div>
{{/ifCond}}
</div>
</script>
<div class="chat_wrapper">
<div class="chat_container">
</div>
</div>
</body>
</html>