-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
38 lines (35 loc) · 1.15 KB
/
popup.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
<html>
<head>
<title>nudge</title>
<link rel="stylesheet" type="text/css" href="standard.css">
<script language='javascript' src='popup.js'></script>
</head>
<body>
<div class="col-md-6 col-md-offset-3">
<img src="nudge.png" width="100%"></img>
<p>Add sites to your blacklist:
<br>
<input type='text' id='badTextField' placeholder='http://www.distraction.com'>
<input type='button' id='addToBlacklistButton' value='Add'></input>
</p>
<p>
<input type='button' id='addToBlacklistButton2' value='Add Current Tab to Blacklist'></input>
</p>
<p>Remove sites from your blacklist:
<br>
<select id='blacklistedSites'></select>
<input type='button' id='removeFromBlacklistButton' value='Remove'></input>
</p>
<input type='button' id='activate' value='Activate Notifications'>
<input type='button' id='deactivate' value='Deactivate'>
<br>
<br>
<br>
<p id="footer">
<a id="source" href="https://github.com/bfreiband/AssignMind">View Source</a> - App created by
<a id="max" href="https://maxalbert.me">Max Albert</a> and
<a id="ben" href="https://benfreiband.rocks">Ben Freiband</a> - Copyright 2017
</p>
</div>
</body>
</html>