-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpopup.html
More file actions
128 lines (111 loc) · 3.29 KB
/
Copy pathpopup.html
File metadata and controls
128 lines (111 loc) · 3.29 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>popup</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class='choice'><h2>Completed/Planned</h2>
<label class="switch">
<input type="checkbox" id="completed" />
<span class="slider round"></span>
</label>
</div>
<div class='choice'><h2>CPL user 1 > PTW user 2</h2>
<label class="switch">
<input type="checkbox" id="completedorder" />
<span class="slider round"></span>
</label>
<h2>CPL user 2 > PTW user 1 </h2>
</div>
<div class='choice'><h2>Tags</h2>
<label class="switch">
<input type="checkbox" id="tags" />
<span class="slider round"></span>
</label>
</div>
<div class='choice'><h2>MalGraph</h2>
<label class="switch">
<input type="checkbox" id="malgraph" />
<span class="slider round"></span>
</label>
</div>
<div class='choice'><h2>Show dropped/on hold tag</h2>
<label class="switch">
<input type="checkbox" id="droptag" />
<span class="slider round"></span>
</label>
</div>
<div class='choice'><h2>Sort Copleted/Planned</h2>
<label class="switch">
<input type="checkbox" id="sortcip" />
<span class="slider round"></span>
</label>
</div>
<div class='choice'><h2>Genre highlighter</h2>
<h4>(Painfully slow)</h4>
<label class="switch">
<input type="checkbox" id="highlighter" />
<span class="slider round"></span>
</label>
</div>
<div class='choice'><h2>Genre bonker</h2>
<h4>(Painfully slow)</h4>
<label class="switch">
<input type="checkbox" id="bonker" />
<span class="slider round"></span>
</label>
</div>
<div class='choice'><h2>Ban Media Type</h2>
<form id="banMedia">
<input type="text" id="inputBanMedia" placeholder="input media types" style="width: 50px;">
<button type="submit">Save</button>
</form>
</label>
</div>
<!-- <div class='choice'><h2>Ban Media Type</h2>
<label>
<input type="checkbox" id="music" />
Music
</label>
<br/>
<label>
<input type="checkbox" id="pv" />
PV
</label>
<br/>
<label>
<input type="checkbox" id="cm" />
CM
</label>
</div> -->
<div class='choice'><h2>Always show tag affinity</h2>
<label class="switch">
<input type="checkbox" id="affinity" />
<span class="slider round"></span>
</label>
</div>
<div class='choice'><h2>Minimum entries cut-off</h2>
<form id="cutoff">
<input type="text" id="inputBox" placeholder="5" style="width: 50px;">
<button type="submit">Save</button>
</form>
</label>
</div>
</br>
<div class='choice'><h2>Public API</h2>
<label class="switch">
<input type="checkbox" id="login" />
<span class="slider round"></span>
</label>
<h2>Login</h2>
</div>
<h4>Discord timestamp</h4>
<h4 id='timestamp'></h4>
<input id='datepicker' type="datetime-local"/>
<h4 id='discord-timestamp'></h4>
<h6 style='height:1rem; color:#bbb;' id="version">v . . .</h6>
</body>
<script src="popup.js" type="text/javascript"></script>
</html>