-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
executable file
·30 lines (30 loc) · 1 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
<!DOCTYPE html>
<html>
<head>
<title></title>
<link rel="stylesheet" type="text/css" href="styles.css" />
</head>
<body>
<h4 class="title">
Activities for <input type="date" id="dateInput">
<button class="btn" id="btnRenderUsage">Apply</button>
</h4>
<div id="tableContainer">
<table id="usageTable">
<thead>
<th>Domain</th>
<th>Duration</th>
<th>Last Url</th>
</thead>
<tbody id="usageBody"></tbody>
</table>
</div>
<div class="actions">
<button class="action btn" id="clearBtn" title="Clear all records for all dates.">Clear All</button>
<button class="action btn" id="downloadAllBtn" title="Download all records.">Download All</button>
<button class="action btn" id="downloadBtn" title="Download records for selected date.">Download</button>
</div>
</body>
<script type="text/javascript" src="idb.js"></script>
<script type="text/javascript" src="popup.js"></script>
</html>