-
Notifications
You must be signed in to change notification settings - Fork 23
/
import.html
36 lines (35 loc) · 1.04 KB
/
import.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>Import Tabs | TabuRei</title>
</head>
<body>
<div class="container">
<h1 class="heading">Import Tabs</h1>
<div class="instructions">
Paste in the content generated by TabuRei or other tab-managing
extensions in their 'Export URLs/List' section, into the below
text-field
</div>
<br />
<form id="import">
<textarea
rows="25"
cols="130"
form="usrform"
id="importform"
></textarea>
<br />
<br />
<button id="elem" style="text-align: center">Import</button>
<br />
</form>
</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/importTabs.js"></script>
</body>
</html>