-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
57 lines (51 loc) · 1.58 KB
/
popup.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Popup options</title>
<link rel="stylesheet" href="popup.css">
</head>
<body>
<form action="" id="settings-form" class="settings">
<h3>
Healthier Tech Habits:
</h3>
<h4>
Twitter Settings
</h4>
<p>
<label for="hide-twitter-feed">Hide Twitter feeds?</label>
<input type="checkbox" id="hide-twitter-feed" class="custom-toggle" checked />
</p>
<p>
<label for="twitter-grayscale">Grayscale Twitter</label>
<input type="checkbox" id="twitter-grayscale" class="custom-toggle" checked />
</p>
<h4>
<label>Facebook Settings</label>
</h4>
<p>
<label for="hide-facebook-feed">Hide Facebook feed?</label>
<input type="checkbox" id="hide-facebook-feed" class="custom-toggle" checked />
</p>
<p>
<label for="facebook-grayscale">Grayscale Facebook</label>
<input type="checkbox" id="facebook-grayscale" class="custom-toggle" checked />
</p>
<h4>
<label>LinkedIn Settings</label>
</h4>
<p>
<label for="hide-linkedin-feed">Hide LinkedIn feed?</label>
<input type="checkbox" id="hide-linkedin-feed" class="custom-toggle" checked />
</p>
<p>
<label for="linked-grayscale">Grayscale LinkedIn</label>
<input type="checkbox" id="linkedin-grayscale" class="custom-toggle" checked />
</p>
</form>
<script src="popup.js"></script>
</body>
</html>