forked from alextrv/enhanced-h264ify
-
Notifications
You must be signed in to change notification settings - Fork 4
/
options.html
49 lines (49 loc) · 1.38 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
49
<!DOCTYPE html>
<html>
<head>
<title data-l10n-id="optionsTitle">Options</title>
<style>
ul {
list-style: none;
padding-left: 0;
}
body {
white-space: nowrap;
}
html, body {
background-color: #000000;
color: #ffffff;
}
</style>
</head>
<body>
<h4 data-l10n-id="optionsTitle">Options</h4>
<ul>
<li>
<input type="checkbox" id="block_60fps" class="checkbox">
<label for="block_60fps" data-l10n-id="optionsBlock60fps">Block 60fps videos</label>
</li>
<li>
<input type="checkbox" id="block_h264" class="checkbox">
<label for="block_h264" data-l10n-id="optionsBlockH264">Block H.264</label>
</li>
<li>
<input type="checkbox" id="block_vp8" class="checkbox">
<label for="block_vp8" data-l10n-id="optionsBlockVP8">Block VP8</label>
</li>
<li>
<input type="checkbox" id="block_vp9" class="checkbox">
<label for="block_vp9" data-l10n-id="optionsBlockVP9">Block VP9</label>
</li>
<li>
<input type="checkbox" id="block_av1" class="checkbox">
<label for="block_av1" data-l10n-id="optionsBlockAV1">Block AV1</label>
</li>
<li>
<input type="checkbox" id="disable_LN" class="checkbox">
<label for="disable_LN" data-l10n-id="optionsDisableLN">Disable Loudness Normalization</label>
</li>
</ul>
<script src="options.js"></script>
</body>
</html>