-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpopup.html
executable file
·101 lines (91 loc) · 2.57 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
body {
font-family: "SFMono-Medium";
background-color: #242A41;
color: white;
width: 500px;
max-height: 2000px;
padding: 15px;
}
h2 {
font-size: 12px;
margin-bottom: 12px;
margin-top: 50px;
}
a {
color: white;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
ul {
list-style-type: none;
padding: 0;
}
li {
background-color: #525252;
font-size: 10px;
margin-bottom: 5px;
padding: 5px;
border-radius: 3px;
}
button {
background-color: rgb(130, 0, 0);
font-family: "SFMono-Medium";
border: none;
color: white;
padding: 5px 10px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 11px;
margin: 5px 2px;
cursor: pointer;
border-radius: 2px;
}
button:hover {
background-color: #555;
}
.banner {
position: absolute;
top: 15px;
left: 20px;
}
.info-container {
position: absolute;
top: 20px;
right: 20px;
}
#info-icon {
font-size: 18px;
color: rgb(255, 255, 255);
text-decoration: none;
}
</style>
</head>
<body>
<div class="banner"><img src="images/banner.png" width="140" height="40" ></div>
<div class="info-container">
<a href="#" id="options-link"><i class="fa fa-cogs" aria-hidden="true"></i></a>
<a href="#" id="info-icon"><i class="fa fa-info-circle" aria-hidden="true"></i></a>
<a href="#" id="clear-all"><i class="fas fa-trash" aria-hidden="true"></i></a>
</a>
</div>
<div class="window">
<h2>Sensitive Paths</h2>
<ul id="sensitivePaths"></ul>
<h2>Custom Headers</h2>
<ul id="customHeaders"></ul>
<h2>Query Params</h2>
<ul id="queryParams"></ul>
<script src="popup.js"></script>
</div>
</body>
</html>