forked from tofaruk/Quick-history-and-bookmark-URL-search
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
84 lines (75 loc) · 2.93 KB
/
index.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html>
<head>
<title>Quick history URL search</title>
<link rel="stylesheet" href="assets/style.css">
</head>
<body>
<div class="container">
<div class="tab">
<button class="tablinks active" data-name="historyContainer">History</button>
</div>
<div id="historyContainer" class="tabcontent" style="display: block;">
<div>
<section id="searchForm" class="searchForm">
<section id="textFilt">
<input type="text" autocomplete="off" id="searchTerm" name="searchTerm" placeholder="Search history (includes domain filtering)"><button id="clearTerm">Clear</button>
</section>
<section id="multiselect_time">
<div id="multiselect">
<div id="selectBox">Select domains</div>
<div id="checkboxes"></div>
</div>
<hr id="divider">
<section id="time_sel" style="display: inline-flex; align-items: baseline; align: baseline;">
<select id="time_s">
<option>All web pages visited</option>
<option>Only domains visited</option>
</select>
<select id="time0">
<option>at any time</option>
<option>sooner than</option>
<option>earlier than</option>
<option>after this date and time</option>
<option>before this date and time</option>
</select>
<input id="time1" type="number" value="2" min="0" style="width: 6ch; text-align: left;"></input>
<select id="time2">
<option>minutes ago</option>
<option>hours ago</option>
<option>days ago</option>
<option>weeks ago</option>
</select>
<input type="datetime-local" id="time3"></input>
</section>
</section>
</section>
<table class="item_table">
<thead>
<tr>
<th class="select">
<input type="checkbox" id="allHistories" name="all_histories">
</th>
<th style="display: flex;align-items: center;">
<span class="th-nav"><button id="removeHistory" class="action left">Remove history records</button></span>
</button></span>
<span class="th-nav"><button id="openLinks" class="action right">Open all selected links</button></span>
<span class="th-nav"><button id="openLinksDisc" class="action right">Open all selected links (Discard immediately)</button></span>
<span class="th-nav"><button id="copyLinks" class="action right">Copy all selected links to clipboard</button></span>
<span class="th-nav th-manage"> <a class="linkTo" href="chrome://history/">Manage History</a></span>
</th>
</tr>
</thead>
<tbody>
<tr class="noData">
<td colspan="2">
<p style="margin-left: 2px;">No history found</p>
</td>
<tr>
</tbody>
</table>
</div>
<script src="assets/jquery-3.6.0.min.js"></script>
<script src="assets/script.js"></script>
</body>
</html>