-
Notifications
You must be signed in to change notification settings - Fork 1
/
popup.html
82 lines (77 loc) · 1.76 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>rdump</title>
<style>
body {
font-family: Arial, sans-serif;
font-size: 14px;
margin: 0;
padding: 20px;
}
.container {
max-width: 300px;
margin: 0 auto;
padding: 10px;
}
#all_tabs {
padding: 10px;
margin-bottom: 15px;
max-height: 200px;
overflow-y: auto;
overflow-x: auto;
}
input[type="checkbox"] {
margin-right: 10px;
}
input[type="text"], button {
width: 100%;
padding: 8px;
margin-bottom: 10px;
background-color: transparent;
border: 1px solid #000;
border-radius: 5px;
box-sizing: border-box;
}
.divider {
text-align: center;
margin-bottom: 10px;
}
#fileInput {
padding: 7px;
border: 2px solid #ccc;
border-radius: 5px;
font-size: 13px;
background-color: #f9f9f9;
}
#fileInput:hover {
border-color: #999;
}
#fileInput:focus {
outline: none;
border-color: #007bff;
box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}
#btns {
display: flex;
gap: 5px;
}
</style>
</head>
<body>
<div class="container">
<div id="all_tabs"></div>
<input id="file_name" type="text" placeholder="Enter file name..." required/>
<div id="btns">
<button id="dmp_btn">Dump</button>
<button id="dmp_all_btn">Dump All</button>
</div>
<div class="divider">or</div>
<input type="file" id="fileInput">
</div>
<script src="popup.js"></script>
</body>
</html>