-
Notifications
You must be signed in to change notification settings - Fork 4
/
options.html
76 lines (59 loc) · 3.66 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
<html>
<head>
<title>Tab Recorder : Options</title>
<meta charset="utf-8" />
<link rel="stylesheet" type="text/css" href="css/options.css" />
</head>
<body>
<div id="content">
<h1><img src="images/icon48.png" alt="" /> Tab Recorder
<span id="version" class="label"></span>
<span class="fR">
<a id="feedback" href="https://chrome.google.com/webstore/detail/browser-tab-recorder-for/eiejkbiipijgeojclpabeedcjalfmnoj/reviews" target="_blank"
title="Feedback on the Chrome Webstore"><strong>Feedback</strong></a>
<a id="request" href="https://chrome.google.com/webstore/detail/browser-tab-recorder-for/eiejkbiipijgeojclpabeedcjalfmnoj/support" target="_blank"
title="Feature Requests on the Chrome Webstore"><strong>Feature Requests</strong></a>
</span>
</h1>
<form>
<section id="settingsSection">
<h2>Settings</h2>
<p>Settings are autosaved every time you modify them!</p>
<h3 class="divider">general</h3>
<input id="downloadSetting" type="checkbox" value="autoDownload" />
<label for="downloadSetting" title="Automatically initiate download after a picture, video, or gif is recorded.">Automatically initiate download after recording.</label>
<!-- Taking this out for simplicity
<h3 class="divider">picture</h3>
<label for="pictureFormatSetting" class="inline" title="Picture format to record in.">Picture capture file format:</label>
<select id="pictureFormatSetting" class="inline">
<option value="png" >.png</option>
<option value="jpeg">.jpeg</option>
</select>
-->
<h3 class="divider">video</h3>
<p>Warning! Going over 800 x 600 may slow the framerate down...</p>
<label for="videoWidthSetting" class="inline" title="Max width and height for video recordings, video size will be resized to meet max dimensions if needed.">Video width & height in pixels:</label>
<input id="videoWidthSetting" class="inline" type="number" />
x
<input id="videoHeightSetting" class="inline" type="number" />
<br />
<input id="aspectRatioSetting" type="checkbox" value="maintainAspectRatio" />
<label for="aspectRatioSetting" title="Maintain aspect ratio when recording video. Video will be resized to fit within the described dimensions.">Maintain tab aspect ratio in video recordings.</label>
<br />
<h3 class="divider">gif</h3>
<p>GIFs use same dimension settings as video recordings.</p>
<label for="gifQualitySetting" title="GIF quality level: lower quality has fewer colors, but has smaller file size.">GIF Quality
[<output name="gifQualitySetting" for="gifQualitySetting"></output>%]:</label>
<span class="range"><input id="gifQualitySetting" type="range" min="25" max="100" step="1"></span>
<label for="gifFrameRateSetting" title="GIF frame rate: .">GIF Frame Rate
[<output name="gifFrameRateSetting" for="gifFrameRateSetting"></output>fps]:</label>
<span class="range"><input id="gifFrameRateSetting" type="range" min="5" max="60" step="1"></span>
</form>
</div>
</body>
<!-- Core JS Scripts -->
<script src="js/third_party/jquery-2.1.0.min.js"></script>
<script src="js/constants.js"></script>
<script src="js/options.js"></script>
<!-- END Core JS Scripts -->
</html>