-
Notifications
You must be signed in to change notification settings - Fork 8
/
options.html
171 lines (147 loc) · 5.01 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta name="generator" content=
"HTML Tidy for Windows (vers 14 February 2006), see www.w3.org" />
<script src="jquery.min.js"></script>
<script src="options.js"></script>
<link rel="stylesheet" type="text/css" href="styles.css">
<style>
.attr-text {
font-size: x-small;
color: darkgray;
}
</style>
<title></title>
</head>
<body>
<div id="optionsDiv" class="" style=
"padding: 10px; text-align: justify;">
<center>
<font size="+1"><a target="_blank" href=
"https://chrome.google.com/webstore/detail/ddpephnhacfpgcemhioaejgenlgadnnh">Video Title
Adder</a> Options</font>
</center>
<form name="titleform" id="YTTA">
<ul>
<li>
<div>
<div class="label">
<span>Show video names on textual YouTube links:</span>
</div>
<div class="slideThree">
<input type="checkbox" id="linkon" name="textlinks" />
<label for="linkon"></label>
</div>
</div>
</li>
<li>
<div>
<div class="label">
<span>Show video names on YouTube links if they contain an image:</span>
</div>
<div class="slideThree">
<input type="checkbox" id="imageon" name="imglinks" />
<label for="imageon"></label>
</div>
</div>
</li>
<li>
<div>
<div class="label">
<span>Replace link text if it's just an url:</span>
</div>
<div class="slideThree">
<input type="checkbox" id="replaceon" name="replacename" />
<label for="replaceon"></label>
</div>
</div>
</li>
<li>
<div>
<div class="label">
<span>Show inline embed buttons for YouTube links:</span>
</div>
<div class="slideThree">
<input type="checkbox" id="embedon" name="embed" />
<label for="embedon"></label>
</div>
</div>
</li>
<li>
<div>
<div class="label">
<span>Place embed button on the left side of links:</span>
</div>
<div class="slideThree">
<input type="checkbox" id="embedlefton" name="embedleft" />
<label for="embedlefton"></label>
</div>
</div>
</li>
<li>
<div>
<div class="label">
<span>Show inline embedded player automatically</span>
</div>
<div class="slideThree">
<input type="checkbox" id="showEmbeddedPlayer" name="showEmbeddedPlayer" />
<label for="showEmbeddedPlayer"></label>
</div>
</div>
</li>
<li>
<div>
<div class="label">
<span>Show tooltip with information when hovering over YouTube links:</span>
</div>
<div class="slideThree">
<input type="checkbox" id="tooltipon" name="tooltip" />
<label for="tooltipon"></label>
</div>
</div>
</li>
<li>
<div>
<div class="label">
<span>Add video length to link text:</span>
</div>
<div class="slideThree">
<input type="checkbox" id="timestampon" name="timestamp" />
<label for="timestampon"></label>
</div>
</div>
</li>
<li>
<div>
<div class="label">
<span>Add video length to tooltip:</span>
</div>
<div class="slideThree">
<input type="checkbox" id="timestamptooltipon" name="timestamptooltip" />
<label for="timestamptooltipon"></label>
</div>
</div>
</li>
<li>
<div>
<div class="label">
<span>Show icon next to link if video is restricted in your country:</span>
</div>
<div class="slideThree">
<input type="checkbox" id="restrictediconon" name="restrictedicon" />
<label for="restrictediconon"></label>
</div>
</div>
</li>
</ul>
<center>
<button id="save_options_button">Save</button>
</center>
</form>
</div>
<div class="attr-text">Embed icon made by <a href="http://www.freepik.com" alt="Freepik.com" title="Freepik.com">Freepik</a> from <a href="http://www.flaticon.com/free-icon/movie-player_49243" title="Flaticon">www.flaticon.com</a></div>
</body>
</html>