-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.html
55 lines (55 loc) · 1.91 KB
/
popup.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
49
50
51
52
53
54
55
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=200,user-scalable=no">
<link rel="stylesheet" href="popup.css">
<script src="popup.js" type="module" defer></script>
</head>
<body>
<p id="context">Sorting all bookmarks</p>
<form id="sort-form">
<p>
<label for="folders">Folders</label>
<select id="folders" name="folders">
<option value="first" selected>first</option>
<option value="inline">inline</option>
<option value="last">last</option>
</select>
</p>
<fieldset>
<legend>Sort by</legend>
<div>
<input type="radio" id="by-title" name="by" value="title" checked>
<label for="by-title">Title</label>
</div>
<div>
<input type="radio" id="by-url" name="by" value="url">
<label for="by-url">URL</label>
</div>
<div>
<input type="radio" id="by-date-added" name="by" value="date-added">
<label for="by-date-added">Date added</label>
</div>
<div>
<input type="radio" id="by-nothing" name="by" value="nothing">
<label for="by-nothing">Nothing</label>
</div>
<div>
<input type="checkbox" id="reversed" name="reversed" value="reversed">
<label for="reversed">Reversed</label>
</div>
</fieldset>
<p>
<input type="checkbox" id="autosort" name="autosort" value="autosort">
<label for="autosort">Always keep sorted</label>
</p>
<button type="submit">Confirm (sort)</button>
</form>
<form id="reset-form" class="node-specific">
<p>
<button type="submit">Reset to global</button>
</p>
</form>
</body>
</html>