-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
47 lines (47 loc) · 1.48 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
<link rel="stylesheet" href="options.css">
<link href="https://fonts.googleapis.com/css?family=Quicksand|Nunito&display=swap" rel="stylesheet">
</head>
<body>
<img src="icons/icon.png">
<h1>tracker.pro</h1>
<hr style="margin-top: 0">
<h2><span id="timeSpent">0</span> unproductive minutes today.</h2>
<hr>
<h3 align="center">YouTube-Specific Options</h3>
<label class="switch">
<input type="checkbox" id="hideRecc">
<span class="toggle"></span>
</label>
<h3>Hide Home/Trending/Library videos.</h3>
<label class="switch">
<input type="checkbox" id="hideSidebar">
<span class="toggle"></span>
</label>
<h3>Hide "Up Next" videos.</h3>
<hr>
<label class="switch">
<input type="checkbox" id="showNumber">
<span class="toggle"></span>
</label>
<h3>Live icon counter</h3>
<hr>
<label class="switch">
<input type="checkbox" id="showNotifications">
<span class="toggle"></span>
</label>
<h3>Hourly Notifications</h3>
<label class="switch">
<input type="checkbox" id="silent">
<span class="toggle"></span>
</label>
<h3>Mute</h3>
<button class="button" id="websiteOptions"><span>Website Options</span></button>
<button class="button" id="showData"><span>View Data</span></button>
</body>
<script type="text/javascript" src="options.js"></script>
</html>