-
-
Notifications
You must be signed in to change notification settings - Fork 102
/
Copy pathbackground.html
77 lines (71 loc) · 2.15 KB
/
background.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
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html style="font-size: 10px;font-family: Roboto, Arial, sans-serif;">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta content="text/html;charset=utf-8" http-equiv="Content-Type" />
<meta content="utf-8" http-equiv="encoding" />
<title>Background Service - Social Stream Ninja</title>
<meta name="title" content="Social Stream Ninja - Background Service" />
<link rel="icon" href="./favicon.ico" />
<script type="text/javascript" src="./thirdparty/webmidi3.js"></script>
<script type="text/javascript" src="./thirdparty/sentiment.js"></script>
<script type="text/javascript" src="./thirdparty/lunr.js"></script>
<script type="text/javascript" src="./thirdparty/xlsx.full.min.js"></script>
<style>
iframe {
background-color:white;
}
body {
font-family: Arial, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
background-color: #a3a4a6;
color: #333;
overflow: hidden;
}
@media (prefers-color-scheme: dark) {
body {
background-color: #525252;
color: #e0e0e0;
}
iframe {
width:10px;
height:5px;
}
}
#popup {
height:100%;
width:398px;
}
#debugOutput {
position: fixed;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
max-width: 80%;
}
.error-message {
background: rgba(255, 0, 0, 0.1);
color: #ff0000;
font-weight: bold;
padding: 10px;
border-radius: 5px;
margin: 5px 0;
font-size: 300%;
}
</style>
</head>
<body>
<center><h1>You must leave this page open for Social Stream Ninja v3 to work</h1></center>
I'm not entirely sure what I'll use this page for; maybe a dock, control interface, settings, or just leave it blank. Let me know.
<!--<iframe id="popup" src="popup.html"></iframe>!-->
<div id="debugOutput"><div>
</body>
<script type="text/javascript" src="./background.js?v=2"></script>
<script type="text/javascript" src="./db.js?v=1"></script>
<script type="text/javascript" src="./ai.js?v=2"></script>
</html>