-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
32 lines (29 loc) · 882 Bytes
/
popup.html
File metadata and controls
32 lines (29 loc) · 882 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>Store and Restore the tabs</title>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="./css/popup.css">
<script src="./js/jquery-3.6.0.slim.min.js"></script>
</head>
<body>
<h2>PSR And Apps</h2>
<div id="buttonPanel" class="buttonPanel">
<button id="backUp" class="btn">BackUp</button>
<button id="clearall" class="btn">Clear All</button>
</div>
<div id="alert" class="alert info">
<span class="closebtn">×</span>
<strong>Info!</strong>
<span id="msg" class="msg"></span>
</div>
<table id="tabFavourites" aria-describedby="Favourite Tabs">
<thead>
<tr><th>Tab Favs</th></tr>
</thead>
<tbody>
</tbody>
</table>
<script src="./js/popup.js"></script>
</body>
</html>