-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinfo.html
More file actions
33 lines (27 loc) · 818 Bytes
/
info.html
File metadata and controls
33 lines (27 loc) · 818 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Alarm Info</title>
<style>
body {
font-family: Arial, sans-serif;
}
label {
display: block;
margin-bottom: 10px;
}
</style>
</head>
<body>
<h1>Alarm Info</h1>
<p id="currentInformation"></p>
<label for="websiteInput">Target URLs</label>
<input type="text" id="addUrl" placeholder="e.g., https://example.com">
<button id="updateUrls">Append</button>
<label for="timeThresholdInput">Set Alarm Period(in minutes):</label>
<input type="number" id="alarmPeriod" placeholder="e.g., 10">
<button id="updateAlarmPeriod">Update</button>
<div id="currentUrls"></div>
<script type="module" src="popup.js"></script>
</body>
</html>