forked from osdc/TabuRei
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (25 loc) · 900 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="css/style.css" />
<link rel="shortcut icon" type="image/png" href="icons/icon-32.png" />
<title>TabuRei</title>
</head>
<body>
<div class="container">
<h1 class="heading">TabuRei</h1>
<p style="text-align: right">
<a href="import.html" ><button>Import Tabs</button></a>
<a href="export.html"><button>Export Tabs</button></a>
</p>
<div id="group-list"></div>
<button id="clear-storage-btn" class="delete">
Clear Storage (Warning: This will clear all tabs)
</button>
</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>