-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
43 lines (43 loc) · 1.33 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="theme.css">
</head>
<body>
<div class="ext_title"><img class="ext_logo" src="icons/icon128px.png"><span>Shift</span></div>
<div class="ext_checkbox_cont">
<input type="checkbox" id="hide_ads" name="hide_ads">
<label for="hide_ads">Hide Ads</label>
<input type="checkbox" id="hide_mixes" name="hide_mixes">
<label for="hide_mixes">Hide Mixes</label>
</div>
<div class="ext_labels">
<div class="ext_label">
<label class="ext_switch">
<input type="checkbox" id="hide_watched">
<span class="ext_slider"></span>
</label>
<span>Hide Watched Videos</span>
</div>
<div class="ext_label">
<label class="ext_switch">
<input type="checkbox" id="work_mode_toggle">
<span class="ext_slider"></span>
</label>
<span>Work Mode</span>
</div>
<div class="work_mode_dets nonactive">
<input type="text" id="ext_include_params">
<p></p>
<div id="ext_include_tags"></div>
<div class="ext_radios">
<input type="radio" id="ext_include" name="ext_include_togg">
<label for="ext_include">Must Include</label>
<input type="radio" id="ext_exclude" name="ext_include_togg" checked>
<label for="ext_exclude">Exclude</label>
</div>
</div>
<script src="content.js"></script>
</div>
</body>
</html>