-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
45 lines (41 loc) · 1.07 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
<!DOCTYPE html>
<html>
<head>
<style>
body {
background-color: #888;
color: #fff;
font-family: Arial;
font-weight: bold;
}
input[type=text], textarea {
background-color: #7691db;
border: 2px dashed #fff;
color: #fff;
}
input[type=button] {
border: 2px dashed #fff;
color: #fff;
font-weight: bold;
}
#save {
background-color: #78de87;
}
#reset {
background-color: #e07b7b;
}
</style>
</head>
<body>
<label for="searchWord">Search Word</label><br />
<input type="text" id="searchWord"><br /><br />
<label for="newImages">Replacement Image URLs (comma-separated)</label><br />
<textarea id="newImages"></textarea>
<br /><br />
<input type="button" id="save" value="Save"> <input type="button" id="reset" value="Reset">
<br />
<p name="saveSuccess" style="display:none"><br />Saved successfully!</p>
<p name="resetSuccess" style="display:none"><br />Reset successfully!</p>
<script src="popup.js"></script>
</body>
</html>