-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.html
51 lines (49 loc) · 998 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
label {
display: block;
margin: 5px 0px;
}
input {
color: #333;
margin-top: 5px;
padding: 3px 6px;
}
input:focus {
outline-color: #3498db;
}
#download-btn {
color: #eee;
background-color: #3498db;
border: 1px solid #3498db;
cursor: pointer;
padding: 5px 10px;
margin-top: 6px;
transition: .2s all ease;
}
#download-btn:hover {
background-color: #fff;
color: #3498db;
}
</style>
</head>
<body>
<label for="pattern">
URL Pattern:
<input type="text" name="pattern">
</label>
<label for="extension">
Filename Extension:
<input type="text" name="extension">
</label>
<button id="download-btn">
Download
</button>
<script src="popup.js"></script>
</body>
</html>