-
Notifications
You must be signed in to change notification settings - Fork 1
/
popup.html
29 lines (26 loc) · 832 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
<!doctype html>
<!--
This page is shown when the extension button is clicked, because the
"browser_action" field in manifest.json contains the "default_popup" key with
value "popup.html".
-->
<html>
<head>
<title>In-Page Timer</title>
<style>
body {
font-family: "Segoe UI", "Lucida Grande", Tahoma, sans-serif;
font-size: 100%;
}
</style>
</head>
<body>
<label for="interval_mins">Minutes: </label><input type="number" id="interval_mins" value="0"/>
<label for="interval_secs">Seconds: </label><input type="number" id="interval_secs" value="0"/>
<button id="btn">Start</button><br>
<button id="pausebtn">Pause</button>
<button id="resumebtn">Resume</button>
<button id="resetbtn">Reset</button>
<script src="popup.js"></script>
</body>
</html>