-
Notifications
You must be signed in to change notification settings - Fork 23
/
index.html
43 lines (34 loc) · 1.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="css/style.css" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" type="image/png" href="icons/icon-32.png" />
<title>TabuRei</title>
</head>
<body>
<div class="container">
<div id="wrapper">
<div class="content"></div>
<div class="content"><h1 class="heading">TabuRei</h1></div>
<div class="content">
<a href="import.html" ><button id="import">Import Tabs</button></a>
<a href="export.html"><button id="">Export Tabs</button></a>
</div>
</div>
<div id="group-list">
<h2>Save some tabs already!</h2>
</div>
<div>
<button id="clear-storage-btn" class="delete">
Clear Tabs
</button>
<label id="warning" for="delete">* Warning: This will clear all tabs </label>
</div>
</div>
<!-- This polyfill allows the Promise-based WebExtension API to run on Chrome and derivatives. -->
<script src="polyfill/browser-polyfill.min.js"></script>
<script src="js/tab-manager.js"></script>
</body>
</html>