-
Notifications
You must be signed in to change notification settings - Fork 83
/
options.html
89 lines (89 loc) · 3.46 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>
<head>
<title>Extensity Options</title>
<link rel="stylesheet" type="text/css" href="styles/options.css" />
<link rel="stylesheet" type="text/css" href="styles/font-awesome.min.css" />
<script type="text/javascript" src="js/libs/underscore-min.js"></script>
<script type="text/javascript" src="js/libs/knockout-3.5.1.js"></script>
<script type="text/javascript" src="js/libs/knockout-secure-binding.min.js"></script>
<script type="text/javascript" src="js/engine.js"></script>
<script type="text/javascript" src="js/options.js"></script>
</head>
<body>
<section id="header">
<div class="tabs">
<h1><img src="images/icon48.png" /> Extensity Options</h1>
<div id="menu">
<a href="/options.html" class="selected">Options</a>
<a href="/profiles.html">Profiles</a>
</div>
</div>
<div class="help">
<!-- <i class="fa fa-close right"></i> -->
<i class="fa fa-warning"></i> <strong><a href="http://sergiokas.github.io/Extensity/help.html" target="_blank">Support Extensity!</a></strong><br/><br/>If you like Extensity and its new Profiles feature, <a href="http://sergiokas.github.io/Extensity/help.html" target="_blank">please consider helping out with its development <i class="fa fa-arrow-circle-right"></i></a>
</div>
</section>
<div class="clear"></div>
<section id="content">
<fieldset id="options">
<legend>Layout</legend>
<div class="field">
<input type="checkbox" name="showHeader" id="showHeader" data-sbind="checked: options.showHeader" />
<label for="showHeader">
Show header at the top
</label>
</div>
<div class="field">
<input type="checkbox" name="searchBox" id="searchBox" data-sbind="checked: options.searchBox"/>
<label for="searchBox">
Show search box
</label>
</div>
<legend>Apps & Extensions</legend>
<div class="field">
<input type="checkbox" name="groupApps" id="groupApps" data-sbind="checked: options.groupApps" />
<label for="groupApps">
Group Apps and Extensions
</label>
</div>
<div class="field">
<input type="checkbox" name="appsFirst" id="appsFirst" data-sbind="checked: options.appsFirst"/>
<label for="appsFirst">
Show Apps first when grouped
</label>
</div>
<div class="field">
<input type="checkbox" name="appsFirst" id="enabledFirst" data-sbind="checked: options.enabledFirst"/>
<label for="enabledFirst">
Show enabled Extensions at the top
</label>
</div>
<div class="field">
<input type="checkbox" name="showOptions" id="showOptions" data-sbind="checked: options.showOptions"/>
<label for="showOptions">
Show options icon for each item
</label>
</div>
<legend>Profiles & Lists</legend>
<div class="field">
<input type="checkbox" name="showReserved" id="showReserved" data-sbind="checked: options.showReserved"/>
<label for="showReserved">
Show "Favorites" and "Always On" profiles in the list
</label>
</div>
<div class="field">
<input type="checkbox" name="keepAlwaysOn" id="keepAlwaysOn" data-sbind="checked: options.keepAlwaysOn"/>
<label for="keepAlwaysOn">
Keep "Always On" extensions enabled when switching everything off
</label>
</div>
<div class="field">
<button id="save" data-sbind="click: save">Save</button>
<a href="#" id="close" data-sbind="click: close">Close</a>
<span id="save-result" class="hidden">| Saved!</span>
</div>
</fieldset>
</section>
</body>
</html>