-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
44 lines (43 loc) · 1.06 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
<!DOCTYPE html>
<html>
<head>
<style>
body {
max-width: 38rem;
padding: 2rem;
margin: auto;
}
button {
height: 30px;
width: 90px;
outline: none;
margin: 10px;
}
</style>
</head>
<body>
<div id="option-exact-match">
<button id="exact-match-toggle"></button>
<span>Remove exact matches</span>
</div>
<!-- <div>
<p>Custom Url Matching. New tabs that match a given rule will remove all existing tabs that match the same rule. Can be multiple times.</p>
<p>How patterns are matched:</p>
<p>
<a href="https://developer.chrome.com/extensions/match_patterns">
https://developer.chrome.com/extensions/match_patterns
</a>
</p>
<div id="new-url">
<button>Add</button>
<input placeholder="new url"/ >
</div>
<div id="existing-urls">
<button>Delete</button>
<span>*://www.messenger.com/t/*</span>
</div>
</div>
-->
</body>
<script src="options.js"></script>
</html>