-
Notifications
You must be signed in to change notification settings - Fork 1
/
options.html
70 lines (60 loc) · 1.66 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
<!DOCTYPE html>
<html>
<head>
<title>Anti-addiction Extension Options</title>
<style>
fieldset {
border: none;
padding: 0;
margin: 0;
margin-bottom: 7px;
}
input, textarea {
margin-top: 2px;
width: 100%;
}
#save {
margin-top: 20px;
font-size: 120%;
}
</style>
</head>
<body>
<fieldset>
Addicting websites
<textarea id="urls" spellcheck="false" rows="4" placeholder="facebook.com,reddit.com,instagram.com"></textarea>
</fieldset>
<fieldset>
Loading delay for addicting websites (seconds)
<input type="text" id="delay" />
</fieldset>
<fieldset>
Message to display while loading
<input type="text" id="message" />
</fieldset>
<fieldset>
Greyscale (massively effective - % to desaturate addicting websites)
<input type="number" id="greyscale" placeholder="0-100" />
</fieldset>
<fieldset>
<input type="checkbox" id="nuclear" />
Nuclear option: greyscale the Internet
</fieldset>
<fieldset>
<input type="checkbox" id="stocks" />
Hide stock prices from Google results
</fieldset>
<div style="text-align: center; font-weight: bold;">
<button id="save" style="width: 100%;">Save Settings</button>
</div>
<br/>
<div style="text-align: center;">
<a href="https://chrome.google.com/webstore/detail/hgokmjffmfnkaofmgjekjpiiocfafdoc/publish-accepted">Leave a review</a>
<a href="mailto:Todd@Fabricate.io">Send feedback</a>
<a href="https://github.com/toddmedema/anti-addiction-chrome">Source code</a>
</div>
<script src="js/options.js"></script>
</body>
</html>