-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
34 lines (29 loc) · 1.16 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
<!DOCTYPE html>
<html>
<head>
<title>Heed</title>
<link rel="stylesheet" href="./options.css">
</head>
<body id="heed">
<h1>Heed</h1>
<p>
<strong>Block Heed</strong> is a simple way to block access to time-consuming websites (like during the working hours) as you specify in the window below.<br><br>
Type the sites you would like to block the access to in a format like <strong>facebook.com</strong>, type them in new line each.
Sites will be blocked on their next attempted visit if enabled. With the same said, you can also enjoy music in the background to increase focus.
<br>
Say no to distractions, and pay <b>heed</b>!
</p>
<textarea id="textarea" rows="10" cols="30" spellcheck="false"></textarea>
<br>
<div id="controls">
<button id="save">Save</button>
<strong>Enabled?</strong><input id="checkbox" type="checkbox" checked="checked">
</div>
<p id="credits">
Created by <strong>Pavel Bucka (penge)</strong>.<br>
Support project by giving it a star (like) at <a target="_blank" href="https://github.com/penge/block-site">https://github.com/penge/block-site</a>.
Let me know about your feature requests.
</p>
<script src="options.js"></script>
</body>
</html>