-
Notifications
You must be signed in to change notification settings - Fork 6
/
options.html
42 lines (36 loc) · 2.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Chromium Updater Options</title>
<meta charset="utf-8">
<!-- <meta name="viewport" content="width=device-width"> -->
<!-- <link href="https://fonts.googleapis.com/css?family=Roboto:400,100,300,300italic" rel="stylesheet" type="text/css"> -->
<link rel="stylesheet" href="css/options.css" type="text/css">
</head>
<body>
<div id="main">
<!-- <h1 class="header-title">Chromium Updater</h1> -->
<!-- <img src="images/options.png"> -->
<section>
<h2>Check for Updates</h2>
<ul>
<li><input type="checkbox" name="updateStartup" id="updateStartup" /><label for="updateStartup"> On Startup</label></li>
<li><input type="checkbox" name="updateHourly" id="updateHourly" /><label for="updateHourly"> Every Hour</li>
</ul>
<div class="spacer"></div>
<h2>Advanced Options</h2>
<ul>
<li><input type="checkbox" name="officialStable" id="officialStable" /><label for="officialStable"> Include check for latest official stable <br></label><div style="font-size:8pt;margin-top:3px;margin-left:20px;color:#666">(based on <a href="https://www.chromium.org/developers/calendar">release calendar</a>)</div></li>
<li><input type="checkbox" name="stableMismatch" id="stableMismatch" disabled="disabled" /><span id="mismatch_disabled"> Notify on version mismatch</span><label id="mismatch_label" for="stableMismatch"></label></li>
</ul>
</section>
<div id="status"></div>
<div id="save"></div>
<!-- <section>
<p id="footer">Extension by <a href="https://github.com/stullig" target="_blank">stullig</a> | Design based on <a href="https://github.com/Hallbin/extension.chromium-updater">Chromium Updater</a> by <a href="https://github.com/Hallbin/">Hallbin</a></p>
</section> -->
</div>
<div id="credits"><a href="https://github.com/stullig/chromium-updater">Chromium Updater</a> by <a style="font-size:7.2pt;" href="https://github.com/stullig">stullig</a></div>
<script type="text/javascript" src="js/options.js"></script>
</body>
</html>