-
Notifications
You must be signed in to change notification settings - Fork 17
/
options.html
29 lines (29 loc) · 849 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>
Giphy for GitHub Options
</title>
</head>
<body>
<h3>
Maximum Rating
</h3>
<span>
Choose the maximum rating of the GIFs that will be retrieved from Giphy.
</span>
<label class="select">
<select id="rating" name="rating">
<option value="y">Y - Young Audiences</option>
<option value="g">G - General Audiences</option>
<option value="pg">PG - Parental Guidance</option>
<option value="pg-13">PG-13 - Parental Guidance</option>
<option value="r">R - Restricted</option>
<option value="nsfw">NSFW - Not safe for work</option>
<option value="">All - Full library, including unrated GIFs</option>
<option value="unrated">Unrated</option>
</select>
</label>
<script type="text/javascript" src="options.js"></script>
</body>
</html>