-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathoptions.html
executable file
·48 lines (48 loc) · 1.49 KB
/
options.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
44
45
46
47
48
<!DOCTYPE html>
<html>
<head>
<title>Bookmark Manager Options and Import</title>
<meta charset="utf-8">
<link rel="stylesheet" href="styles/options.css">
</head>
<body>
<header class="header">
<h1>Bookmark Manager</h1>
<details id="importarea">
<summary>Import bookmarks</summary>
<div id="dropzone">
<p>
To import your bookmarks, first export them from Opera 12.<br>
Go to <strong>Bookmarks → Manage bookmarks → File → Export as HTML</strong> and save.<br>
This produces a Netscape-format HTML bookmarks file.</p>
<p>
Then browse to your bookmarks file and upload them.
<input type="file" id="fileimport">
<span id="import-out"></span>
</p>
</div>
</details>
<details>
<summary>Advanced settings</summary>
<p><button id="export">Export bookmarks</button> in Netscape bookmarks format</p>
<p><button id="wipe">Delete all bookmarks</button> from Bookmark Manager <span id="wipe-out"></span></p>
</details>
<input type="search" size="40" placeholder="Filter bookmarks" id="filter" class="filter">
</header>
<div id="lightbox">
<button id="lightbox-cancel">×</button>
<h2>Moving “<span id="bmname">bookmark</span>”</h2>
<div id="lightbox-body">
<table id="bookmarks" class="table">
<tr data-bookmark-id="0" data-depth="0">
<td colspan="3">Bookmarks</td>
<td colspan="2">
<button>New folder</button>
</td>
</tr>
</table>
</div>
</div>
<script src="scripts/options.js"></script>
</body>
</html>