-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
32 lines (28 loc) · 1.2 KB
/
options.html
File metadata and controls
32 lines (28 loc) · 1.2 KB
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
<!-- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
<!doctype html>
<meta charset='utf-8'>
<link rel='stylesheet' href='options.css'>
<script src='options.js'></script>
<div class='section-start'>Offer to move tabs</div>
<div class='toggle-container-with-text'>
<input id='move-before' type='radio' name='move' value='before'>
<label for='move-before'>before the target tab</label>
</div>
<div class='toggle-container-with-text'>
<input id='move-after' type='radio' name='move' value='after'>
<label for='move-after'>after the target tab</label>
</div>
<div class='section-start'>When moving the active tab</div>
<div class='toggle-container-with-text'>
<input id='active-keep' type='radio' name='active' value='keep'>
<span>
<label for='active-keep'>follow that tab</label>
<span class='helper'>(it stays active)</span>
</span>
</div>
<div class='toggle-container-with-text'>
<input id='active-next' type='radio' name='active' value='next'>
<label for='active-next'>select an adjacent tab</label>
</div>