-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
59 lines (49 loc) · 1.19 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
<!DOCTYPE html>
<html>
<head>
<title>Web Extensions Security Checker</title>
<style>
body {
width: 18rem;
color: white;
background-color: black;
}
.title {
font-weight: bolder;
}
button {
margin: 5px;
outline: none;
color: white;
}
button:hover {
outline: lightgreen dotted thick;
}
.hide {
display: none;
}
#noHighRiskExtensionsFound {
color: lightgreen;
}
#hasHighRiskExtensions>ul {
color: lightgreen;
padding-left: 1rem;
}
#hasHighRiskExtensions>ul>li>span {
color: red;
}
</style>
</head>
<body>
<p class="title">Web Extensions Security Checker</p>
<div id="hasHighRiskExtensions">
<p>The following high-risk extensions were detected:</p>
<ul id="highRiskExtensions">
</ul>
</div>
<div id="noHighRiskExtensionsFound">
<p>Congratulations, no high-risk extensions were detected.</p>
</div>
<script type="module" src="popup.js"></script>
</body>
</html>