-
Notifications
You must be signed in to change notification settings - Fork 1
/
options.html
69 lines (69 loc) · 1.88 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
<!DOCTYPE html>
<html>
<head><title>Steam Context Menu</title></head>
<style>
body {
font-size: small;
}
.option {
margin-bottom: .6em;
}
.clearfix {
overflow: auto;
}
input[type="checkbox"] {
margin-right: 0.5em;
}
</style>
<body>
<div style="margin-bottom: 10px;">
<p>
Choose which context menus to enable.<br>
To disable the parent menu, select only one option.<br>
</p>
<div class="option">
<label>
<input type="checkbox" id="b_steam" />
<strong>Steam</strong> -
<a target="_blank" href="http://store.steampowered.com/">http://store.steampowered.com/</a>
</label>
</div>
<div class="option">
<label>
<input type="checkbox" id="b_steamdb" />
<strong>SteamDB</strong> -
<a target="_blank" href="https://steamdb.info/">https://steamdb.info/</a>
</label>
</div>
<div class="option" style="margin-left: 25px;">
<label>
<input type="checkbox" id="b_steamdb_instant" />
Use <a target="_blank" href="https://steamdb.info/instantsearch/">Instant Search</a> <em>(Beta)</em>
</label>
</div>
<div class="option">
<label>
<input type="checkbox" id="b_isthereanydeal" />
<strong>IsThereAnyDeal</strong> -
<a target="_blank" href="https://isthereanydeal.com/">https://isthereanydeal.com/</a>
</label>
</div>
<div class="option">
<label>
<input type="checkbox" id="b_options" />
<strong>Change Visible Menus</strong> -
Opens this options page
</label>
</div>
</div>
<div class="clearfix" style="font-size: smaller; margin-top: 20px;">
<span style="float: left">Changes are saved automatically.</span>
<span style="float: right">
<a target="_blank" href="https://github.com/Skylark95/chrome-steam-context-menu/releases">
Version <span id="version"></span>
</a>
</span>
</div>
<script src="options.js"></script>
</body>
</html>