-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
42 lines (41 loc) · 1.6 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
39
40
41
42
<!--
DistractMeNot - popup.html
Author: Eric Liang
Author URI: https://www.eric-liang.com
Author Github URI: https://www.github.com/ewliang
Project Repository URI: https://github.com/ewliang/DistractMeNot-Chrome-Extension
Description: The main UI for the DistractMeNot Chrome Extension.
License: MIT
-->
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name = "viewport" content = "width=device-width, initial-scale = 1.0">
<meta http-equiv = "X-UA-Compatible" content = "ie=edge">
<title>DistractMeNot Chrome Extension</title>
<link href = "style.css" rel = "stylesheet" type = "text/css">
</head>
<body>
<header>
<h1>DistractMeNot</h1>
</header>
<p>
To get started, simply type in a URL with (http or https) and hit [Enter] or click "Add To Blacklist".
Once you make an update to your tab, the program will start working.
</p>
<small class = "flex-row toggle-activation-wrapper">
<input type = "checkbox" id = "activationToggle">
<label for = "activationToggle">Is Active?</label>
</small>
<form class = "flex-column">
<input type = "url" id = "urlInput" placeholder = "(e.g. https://www.example.com)" required>
<div class = "flex-row">
<button class = "btn-neutral" id = "resetButton">Reset</button>
<input type = "submit" class = "btn-primary" id = "addURLButton" value = "Add To Blacklist">
</div>
</form>
<footer><small>Created by <a href = "https://www.eric-liang.com">Eric Liang</a></small></footer>
<script src = "popup.js"></script>
</body>
</html>