forked from latestchatty/chromeshack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
103 lines (103 loc) · 4.68 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
<!DOCTYPE html>
<html>
<head>
<title>Chrome Shack Options</title>
<link rel="stylesheet" type="text/css" href="options.css" />
<script type="text/javascript" src="default_settings.js"></script>
<script type="text/javascript" src="common.js"></script>
<script type="text/javascript" src="version.js"></script>
<script type="text/javascript" src="options.js"></script>
<meta charset="UTF-8" />
</head>
<body onload="loadOptions()">
<h2>
<input type="checkbox" class="script_check" id="lol" />
<label for="lol">LOL tags</label>
</h2>
<div id="lol_settings">
<div id="lol_tags"></div>
<a href="#" onclick="addTag(); return false;">Add</a>
</div>
<h2>
<input type="checkbox" class="script_check" id="comment_tags" />
<label for="comment_tags">Comment Tags</label>
</h2>
<h2>
<input type="checkbox" class="script_check" id="expiration_watcher" />
<label for="expiration_watcher">Expiration Watcher</label>
</h2>
<div id="expiration_watcher_settings">
Style:
<input type="radio" name="expiration_watcher_style" id="expiration_watcher_bar"/><label for="expiration_watcher_bar">Bar</label>
<input type="radio" name="expiration_watcher_style" id="expiration_watcher_wolf3d"/><label for="expiration_watcher_wolf3d">Wolf3d</label>
</div>
<h2>
<input type="checkbox" class="script_check" id="post_preview" />
<label for="post_preview">Post Preview</label>
</h2>
<div id="post_preview_settings">
Button Location:
<input type="radio" name="post_preview_location" id="post_preview_left"/><label for="post_preview_left">Left</label>
<input type="radio" name="post_preview_location" id="post_preview_right"/><label for="post_preview_right">Right</label>
</div>
<h2>
<input type="checkbox" class="script_check" id="highlight_users" />
<label for="highlight_users">Highlight Users</label>
</h2>
<div id="highlight_users_settings">
<div id="highlight_groups"></div>
<a href="#" onclick="addHighlightGroup(); return false;">Add</a>
</div>
<h2>
<input type="checkbox" class="script_check" id="new_comment_highlighter" />
<label for="new_comment_highlighter">New Comments Highlighter</label>
</h2>
<h2>
<input type="checkbox" class="script_check" id="category_banners" />
<label for="category_banners">Category Banners</label>
</h2>
<div id="category_banners_settings">
Show banners for:<br />
<input type="checkbox" class="category_banner" id="offtopic"/><label for="offtopic">Off topic</label><br />
<input type="checkbox" class="category_banner" id="political"/><label for="political">Political</label><br />
<input type="checkbox" class="category_banner" id="stupid"/><label for="stupid">Stupid</label><br />
</div>
<h2>
<input type="checkbox" class="script_check" id="image_loader" />
<label for="image_loader">Image Loader</label>
</h2>
<h2>
<input type="checkbox" class="script_check" id="video_loader" />
<label for="video_loader">Video Loader</label>
</h2>
<div id="video_loader_settings">
<input type="checkbox" id="video_loader_hd"/><label for="video_loader_hd">Show in HD (when available)</label>
</div>
<h2>
<input type="checkbox" class="script_check" id="collapse_threads" />
<label for="collapse_threads">Collapse Threads</label>
</h2>
<h2>
<input type="checkbox" class="script_check" id="winchatty_comments_search" />
<label for="winchatty_comments_search">Use WinChatty Search on profile page</label>
</h2>
<h2>
<input type="checkbox" class="script_check" id="sfw" />
<label for="sfw">Safe For Work (white shack)</label>
</h2>
<h2>
<input type="checkbox" class="script_check" id="dinogegtik" />
<label for="dinogegtik">Dino Gegtik</label>
</h2>
<h2>
<input type="checkbox" class="script_check" id="sparkly_comic" />
<label for="sparkly_comic">Sparkly Comic</label>
</h2>
<div>
<button onclick="saveOptions()">Save</button>
<button onclick="loadOptions()">Reset</button>
<br/>
<span id="status"> </span>
</div>
</body>
</html>