-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathoptions.html
86 lines (82 loc) · 1.67 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
<html>
<head>
<style>
body {
min-width:400px;
overflow-x:hidden;
font-family: 'Shanti', arial, serif;
font-size: 16px;
}
#loading {
padding-left: 20px;
}
#title {
font-weight: 700;
font-size: large;
border-bottom: 1px solid #e0e0dc;
color: #344152;
}
#main {
width: 600px;
margin: 0px auto;
}
#desc {
margin-top: 20px;
}
#blacklist {
margin: 20px;
}
#inputarea {
margin: 20px;
}
#emptynotice {
margin: 20px;
display: none;
}
#blacklistdiv {
color: #CC1100;
}
#statusarea {
background-color: rgb(227,227,227);
color: green;
padding: 4px;
}
.blockurl {
display: block;
height: 20px;
line-height: 20px;
margin: 2px;
padding: 2px;
width: 500px;
background-color: rgb(227,227,227);
}
.delete {
float: right;
}
</style>
<script src="jquery.min.js"></script>
<title>Reddit Check Options</title></head>
<body>
<div id="main">
<div id="title"> Reddit-Check Website Blacklist </div>
<div id="inputarea">
<form action="" id="blockform">
<input id="blockurl" type="text">
<input type="submit" value="Add to Blocklist" id="addbutton">
<input type="button" value="Clear blocklist" id="clear"><br/>
</form>
</div>
<div id="statusarea">
Tip: 'google' will block google.com, mail.google.com etc.<br/>
</div>
<div id="desc">
Reddit check will not run on web addresses containing:
</div>
<div id="blacklistdiv"><ol id="blacklist"></ol> </div>
<div id="emptynotice">Your blacklist is empty.</div>
<div id="loading">
Loading your black list.
</div>
</div>
<script src="options.js"></script>
</html>