forked from hsbakshi/reddit-check
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
options.html
103 lines (99 loc) · 2.57 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<html>
<head>
<style>
body {
min-width:200px;
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: 500px;
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: 400px;
background-color: rgb(227,227,227);
}
.delete {
float: right;
}
</style>
<script src="jquery.min.js"></script>
<title>Thredd Options</title></head>
<body>
<div id="main">
<h1>Thredd Privacy Options</h1>
<p>Edit the <strong>Website Blacklist</strong> to indicate sites where Thredd should not run.</p>
<p>Alternatively, you can check the box to <strong>Only run on click</strong> for the most control over your privacy.
However, Thredd cannot work in the background if you check this box.
<h3> Website Blacklist </h3>
<hr>
<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">
Thredd 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>
<h3>Additional Privacy Options</h3>
<hr>
<input type="checkbox" id="run_on_click"> Only run on click
<div id="runonclick_warning" style="display:none; color:red">
<strong>*WARNING*:</strong> Thredd cannot notify you of results found if this box is checked!
</div>
<h1>Notification Options</h1>
<input type="checkbox" id="disable_link_preview"> Disable Thredd Logo next to web links
<br>
<input type="checkbox" id="disable_popup_notification"> Disable Popup Notification
<br>
<input type="checkbox" id="disable_flashing_notification"> Disable Flashing Notification
</div>
<script src="options.js"></script>
</html>