forked from osdc/TabuRei
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexport.html
32 lines (32 loc) · 939 Bytes
/
export.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
<!DOCTYPE html>
<html>
<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>Export Tabs | TabuRei</title>
</head>
<body>
<div class="container">
<h1 class="heading">Exported Tabs</h1>
<div class="instructions">
The following generated list can be imported into TabuRei and other
tab-managing extensions by copying and pasting the URLs in their 'Import
URLs' section.
</div>
<br />
<form id="export">
<textarea
rows="30"
cols="150"
form="usrform"
id="export-form"
style="max-width: 1000px; min-width: 360px"
></textarea>
</form>
<br />
<a href="index.html"><button>Back to Tab Manager</button></a>
</div>
<script src="js/exportTabs.js"></script>
</body>
</html>