-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
66 lines (63 loc) · 3.67 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hidden Chat Content</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body class="bodyPopup">
<div class="center-heading">Hidden Chat Content</div>
<textarea id="fragments" rows="13" cols="30"></textarea>
<div class="button-container">
<button id="downloadButton" class="button" title="Download Content Rules">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" />
<polyline points="7 10 12 15 17 10" />
<line x1="12" y1="15" x2="12" y2="3" />
</svg>
</button>
<button id="settingsButton" class="button" title="View Removed Message History in a new Tab">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<circle cx="12" cy="12" r="3" />
<path
d="M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z" />
</svg>
</button>
<div class="toggle-button">
<input type="checkbox" id="hideBots">
<label for="hideBots" title="Hide Common Bot Spam">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<rect x="5" y="5" width="14" height="14" rx="2" />
<circle cx="9" cy="10" r="1" />
<circle cx="15" cy="10" r="1" />
<path d="M8 15h8" />
<path d="M12 5v-2" />
<path d="M5 12h-2" />
<path d="M21 12h-2" />
<line x1="2" y1="2" x2="22" y2="22" />
</svg>
</label>
</div>
<div class="toggle-button">
<input type="checkbox" id="hideCommands">
<label for="hideCommands" title="Hide Common Command Spam">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<rect x="3" y="4" width="18" height="16" rx="2" />
<line x1="3" y1="8" x2="21" y2="8" />
<circle cx="6" cy="6" r="1" />
<circle cx="9" cy="6" r="1" />
<path d="M7 13l3 3" />
<path d="M10 13l-3 3" />
<line x1="2" y1="2" x2="22" y2="22" />
</svg>
</label>
</div>
</div>
<script src="js/modulePopup.js" type="module"></script>
</body>
</html>