-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
38 lines (38 loc) · 1.06 KB
/
popup.html
File metadata and controls
38 lines (38 loc) · 1.06 KB
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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Welcome to Automatic Reloading</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
.button {
background-color: #4CAF50; /* Green */
border: none;
color: white;
text-align: center;
text-decoration: none;
display: inline-block;
cursor: pointer;
}
.button2 {background-color: #f44336;} /* Red */
</style>
<script src="popup.js"></script>
</head>
<body>
<h1>Reloader</h1>
<table>
<tr align="middle">
<td>Mins:</td>
<td><input id = "reloadTimeMins" type="number" min="1" max="60" step="2" value="1"></td>
</tr>
<tr align="middle" mode="info"></tr>
<td>
<button class="button" id="startReload">Start</button>
</td>
<td>
<button class="button button2" id="stopReload">Stop</button>
</td>
</tr>
</table>
</body>
</html>