-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathhistory.html
More file actions
35 lines (35 loc) · 949 Bytes
/
history.html
File metadata and controls
35 lines (35 loc) · 949 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
34
35
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Tab History</title>
<link rel="stylesheet" href="popup.css">
<style>
.history-table {
margin-top: 20px;
}
.history-table th {
text-align: left;
}
.history-table td {
word-break: break-all;
}
</style>
<script defer src="history.js"></script>
</head>
<body class="history-page">
<div class="container history-container">
<h1><span class="history-icon"></span>Tab History</h1>
<p class="history-description">See all your recent tabs and their productivity levels. Click a URL to revisit it.</p>
<table id="historyTable" class="history-table">
<thead>
<tr>
<th>URL</th>
<th>Productivity</th>
</tr>
</thead>
<tbody id="historyTableBody"></tbody>
</table>
</div>
</body>
</html>