-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
89 lines (82 loc) · 1.82 KB
/
popup.html
File metadata and controls
89 lines (82 loc) · 1.82 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<style>
body {
width: 250px;
padding: 15px;
font-family: sans-serif;
color: #333;
}
h2 {
margin-top: 0;
font-size: 16px;
border-bottom: 1px solid #eee;
padding-bottom: 8px;
}
.option {
margin: 15px 0;
display: flex;
flex-direction: column;
gap: 8px;
}
label {
display: flex;
align-items: center;
cursor: pointer;
font-size: 14px;
}
input[type="radio"] {
margin-right: 8px;
}
.desc {
margin-left: 24px;
font-size: 12px;
color: #666;
line-height: 1.4;
}
.about {
font-size: 12px;
color: #666;
line-height: 1.4;
}
#status {
margin-top: 10px;
font-size: 12px;
color: green;
height: 15px;
}
</style>
</head>
<body>
<h2>injectionkiller</h2>
<p class="about">
hidden text can often be hidden in assignment descriptions.
these are invisible to you, but will appear when copy/pasted into google or another document.
this extension detects and removes them.<br><br>
source code is open source and available on <a href="https://github.com/josiahbergen/injectionkiller" target="_blank">github</a>.
</p>
<br>
<h2>settings</h2>
<div class="option">
<label>
<input type="radio" name="mode" value="peaceOfMind" checked>
Peace of Mind
</label>
<div class="desc">
Automatically remove all hidden text. Never worry about prompt injection again.
</div>
</div>
<div class="option">
<label>
<input type="radio" name="mode" value="manual">
Manual
</label>
<div class="desc">
Notifies you of hidden text elements.
</div>
</div>
<script src="popup.js"></script>
</body>
</html>