-
Notifications
You must be signed in to change notification settings - Fork 23
/
export.html
36 lines (36 loc) · 1.17 KB
/
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
33
34
35
36
<!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"
class="text-area"
></textarea>
</form>
<br />
<button type="button" class="copy-text">Copy text</button>
<a href="index.html"><button>Back to Tab Manager</button></a>
</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/exportTabs.js"></script>
</body>
</html>