-
Notifications
You must be signed in to change notification settings - Fork 1
/
options.html
28 lines (26 loc) · 1.24 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
<!DOCTYPE html>
<html>
<head>
<style>
body {
font-family: sans-serif;
}
</style>
</head>
<body>
<div>
<h1>Slow looking options</h1>
<h2>Display style</h2>
<form name="options">
<input type="radio" name="display_options" value="enabled" id="enabled"><strong>Enabled</strong> <nobr>(lots of eyes)</nobr></input><br/>
<input type="radio" name="display_options" value="unobtrusive" id="unobtrusive"><strong>Unobtrusive</strong> <nobr>(eyes on hover)</nobr></input><br/>
<input type="radio" name="display_options" value="disabled" id="disabled"><strong>Disabled</strong> <nobr>(no eyes, no how)</nobr></input><br/>
</form>
</div>
<div>
<p>Browser extension by <a href="http://labs.cogapp.com">Cogapp Labs</a>. Images displayed via <a href="http://slowlooking.cogapp.com/">slowlooking.cogapp.com</a>.</p>
<!-- <div>Icons made by <a href="https://www.freepik.com/" title="Freepik">Freepik</a> from <a href="https://www.flaticon.com/" title="Flaticon">www.flaticon.com</a> is licensed by <a href="http://creativecommons.org/licenses/by/3.0/" title="Creative Commons BY 3.0" target="_blank">CC 3.0 BY</a></div> -->
</div>
</body>
<script src="options.js"></script>
</html>