-
Notifications
You must be signed in to change notification settings - Fork 57
/
options.html
45 lines (43 loc) · 1.69 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
<!DOCTYPE html>
<html>
<head>
<title>ChromePlay Extension Options</title>
<link rel="stylesheet" href="https://bootswatch.com/cosmo/bootstrap.min.css"></head>
<body>
<div style="width: 600px; margin: 15px;">
<form class="form-horizontal">
<legend>ChromePlay Extension Options </legend>
<div class="form-group">
<label for="hostname" class="col-lg-5 control-label">AppleTV hostname</label>
<div class="col-lg-5">
<input type="text" class="form-control" id="hostname" placeholder="IP or hostname + .local"> </div>
</div>
<div class="form-group">
<label class="col-lg-5 control-label">Start playing HTML5 videos</label>
<div class="col-lg-5">
<div class="radio">
<label>
<input id="play-position-current" name="play-position" value="current" type="radio"> from current position </label>
</div>
<div class="radio">
<label>
<input id="play-position-0" name="play-position" value="0" type="radio"> from the beginning </label>
</div>
</div>
</div>
<div class="form-group">
<div class="col-lg-5 col-lg-offset-5">
<button id="save" class="btn btn-primary">Save</button>
</div>
</div>
<div id="status" class="invisible">Options saved</div>
<legend>About</legend>
<img src="icon.png" alt="ChromePlay logo" style="float:left;margin-right: 10px; width:50px">
<p>
ChromePlay extension was developed by <a href="https://twitter.com/LukaszCzekaj">Lucas Czekaj</a>.<br />
Source code and updates: <a href="https://github.com/czekaj/ChromePlay">https://github.com/czekaj/ChromePlay</a></p>
</form>
</div>
<script src="options.js"></script>
</body>
</html>