-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
39 lines (35 loc) · 1.34 KB
/
Copy pathoptions.html
File metadata and controls
39 lines (35 loc) · 1.34 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Locked In Settings</title>
<link rel="stylesheet" href="ui.css">
</head>
<body class="options-shell">
<main class="options-layout">
<section class="options-hero">
<p class="eyebrow">Extension settings</p>
<h1>Keep the work window clean</h1>
<p class="hero-copy">
Add any domain once and every subpage or subdomain will be blocked too.
</p>
</section>
<section class="card options-card">
<div class="section-header">
<div>
<h2>Blocked domains</h2>
<p class="section-copy">Examples: <code>reddit.com</code>, <code>x.com</code>, <code>news.ycombinator.com</code></p>
</div>
</div>
<div class="input-row large">
<input id="domain-input" type="text" placeholder="Add a domain to block" autocomplete="off">
<button id="add-domain" class="primary-button" type="button">Add domain</button>
</div>
<p id="status-message" class="status-message" role="status" aria-live="polite"></p>
<ul id="domain-list" class="domain-list full-list"></ul>
</section>
</main>
<script type="module" src="options.js"></script>
</body>
</html>