forked from einaregilsson/Redirector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
31 lines (31 loc) · 1.02 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
<!DOCTYPE html>
<html>
<head>
<title>REDIRECTOR</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="css/popup.css" />
</head>
<body>
<h1>REDIRECTOR</h1>
<div class="disabled">
<span data-show="disabled" style="display: none;">Disabled</span>
</div>
<button id="toggle-disabled">
<span data-show="disabled" style="display:none">Enable Redirector</span>
<span data-show="!disabled">Disable Redirector</span>
</button>
<button id="open-redirector-settings">Edit Redirects</button>
<label>
<input id="enable-logging" type="checkbox" data-bind="logging" />
<span>Enable logging</span>
</label>
<label>
<input id="enable-notifications" type="checkbox" data-bind="enableNotifications" />
<span>Enable notifications</span>
</label>
<script src="js/stub.js"></script>
<script src="js/util.js"></script>
<script src="js/popup.js"></script>
</body>
</html>