-
Notifications
You must be signed in to change notification settings - Fork 162
/
popup.html
20 lines (20 loc) · 933 Bytes
/
popup.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html>
<head>
<title>REDIRECTOR</title>
<link rel="stylesheet" href="css/popup.css" />
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
</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>