-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
37 lines (37 loc) · 891 Bytes
/
popup.html
File metadata and controls
37 lines (37 loc) · 891 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>HAR Saver</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
padding: 20px;
width: 300px;
}
.button {
border: 1px solid #5646e7;
color: #5646e7;
background: none;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 20px 2px;
cursor: pointer;
border-radius: 8px;
}
.footer {
margin-top: 20px;
font-size: 14px;
color: #555;
}
</style>
</head>
<body>
<button id="downloadButton" class="button">Download HAR File</button>
<div class="footer">Press Ctrl+Shift+H to export</div>
<script src="popup.js"></script>
</body>
</html>