-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
52 lines (49 loc) · 1.63 KB
/
Copy pathoptions.html
File metadata and controls
52 lines (49 loc) · 1.63 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
body{
background-color: black;
color:antiquewhite;
}
.centered{
text-align:center;
vertical-align:center;
}
.onCenter{
display: inline-block;
}
</style>
<script src="options.js" defer></script>
</head>
<body>
<div class="centered">
<h2 class="onCenter">Block facebooks feeds</h2>
</div>
<p>
This is a facebook feed blocker option page.Facebook has many different types of feed."></div>
</p>
<ul>
<li>Feed by groups</li>
<li>Feeds by the individual or pages</li>
<li>Sponsored feeds also called ads</li>
<li>Suggested feeds are feeds that facebook suggested you</li>
</ul>
<p>You can block any of the above option or you can block the all of the feeds. We think blocking sponsored suggested and individual feeds will allow you to stay productive. </p>
<h3>Feeds section</h3>
<div>
<input type="checkbox" id="All"><span>All feeds</span>
<input type="checkbox" id="Group"><span>Group feeds</span>
<input type="checkbox" id="Individual"><span>Individual feeds</span>
<input type="checkbox" id="Sponsored"><span>Sponsored feeds</span>
<input type="checkbox" id="Suggested"><span>Suggested feeds</span>
</div>
<div class="centered">
<button id="Submit">Submit</button>
</div>
</body>
</html>