forked from cjmaxik/more-boosty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
89 lines (78 loc) · 2.93 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title data-locale="options_title">Options</title>
</head>
<body>
<div class="container">
<div class="row">
<div>
<form id="options-form">
<div class="ms-form-group">
<label class="label-inline">
<input type="checkbox" name="full_layout">
<span data-locale="options_full_layout" for="full_layout">
Widescreen layout
</span>
</label>
<span data-locale="options_full_layout_desc" class="ms-under-input ms-text-light ms-text-right">
page is now 95% of screen width
</span>
</div>
<hr>
<div class="ms-form-group">
<label class="label-inline">
<input type="checkbox" name="theater_mode">
<span data-locale="options_theater_mode" for="theater_mode">
Theater mode for Boosty streams
</span>
</label>
<span data-locale="options_theater_mode_desc" class="ms-under-input ms-text-light ms-text-right">
scroll down to reveal the top menu
</span>
</div>
<hr>
<div class="ms-form-group">
<label class="label-inline">
<input type="checkbox" name="save_last_timestamp">
<span data-locale="options_save_last_timestamp" for="save_last_timestamp">
Save where you left off video/audio
</span>
</label>
<span class="ms-under-input ms-text-light ms-text-right">
<span data-locale="options_save_last_timestamp_desc_1">
for Boosty players only
</span></br>
<span data-locale="options_save_last_timestamp_desc_2">
saved locally for 7 days, every 10 seconds
</span></br>
<span data-locale="options_save_last_timestamp_desc_3">
first and last 60 seconds are ignored
</span>
</span>
</div>
<div class="ms-form-group">
<label class="label-inline">
<input type="checkbox" name="force_video_quality">
<span data-locale="options_force_video_quality" for="force_video_quality">
Force video quality
</span>
</label>
</div>
<div class="ms-form-group">
<select type="select" id="video_quality" disabled>
</select>
<span data-locale="options_video_quality_desc" class="ms-under-input ms-text-light ms-text-right">
for Boosty video player only
</span>
</div>
</form>
</div>
</div>
</div>
</body>
<script src="options.js" type="module"></script>
</html>