-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
25 lines (22 loc) · 893 Bytes
/
options.html
File metadata and controls
25 lines (22 loc) · 893 Bytes
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
<!-- 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='localization' href='locale/{locale}.ftl'>
<link rel='stylesheet' href='options.css'>
<script src='options.js' type='module'></script>
<div>
<label for='inflight-max' data-l10n-id='prefs-inflight-max'></label>
<input id='inflight-max' type='number' min='1'>
</div>
<div class='toggle-container-with-text'>
<input id='notify' type='checkbox'>
<label for='notify' data-l10n-id='prefs-notify'></label>
</div>
<p id='tip'>
<span data-l10n-id='prefs-tip-intro'></span>
<button class='action-link' id='tip-show' data-l10n-id='prefs-tip-expand'>
</button>
<span class='more' data-l10n-id='prefs-tip-text'></span>
</p>