-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanager.html
More file actions
29 lines (29 loc) · 956 Bytes
/
manager.html
File metadata and controls
29 lines (29 loc) · 956 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>TabView</title>
<link rel="stylesheet" href="manager.css">
</head>
<body>
<header>
<h1>TabView</h1>
<div class="controls">
<span id="tabCount"></span>
<button id="mergeWindows" title="Merge all windows into one">Merge Windows</button>
<button id="captureAll" title="Capture tab previews">Capture Previews</button>
</div>
</header>
<div id="grid"></div>
<div id="actionBar" class="action-bar hidden">
<span id="selectedCount">0 selected</span>
<div class="action-buttons">
<button id="groupSelected" title="Group selected tabs">Group</button>
<button id="discardSelected" title="Unload from memory to free RAM">Discard</button>
<button id="closeSelected" title="Close selected tabs">Close</button>
</div>
</div>
<div id="toast" class="toast hidden"></div>
<script src="manager.js"></script>
</body>
</html>