blob: fd8a8f07d1e587ec19abd456a92ea3f40f4e14fe (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!DOCTYPE html>
<html>
<head>
<title>REDIRECTOR</title>
<link rel="stylesheet" href="css/popup.css" />
<meta charset="UTF-8">
</head>
<body>
<h1>REDIRECTOR</h1>
<div class="disabled"><span data-show="disabled" style="display: none;">Disabled</span></div>
<button onclick="toggle('disabled')"><span data-show="disabled">Enable Redirector</span><span data-show="!disabled">Disable Redirector</span></button>
<button onclick="openRedirectorSettings()">Edit Redirects</button>
<label><input type="checkbox" data-bind="logging" onclick="toggle('logging')" /> Enable logging</label>
<label><input type="checkbox" data-bind="enableNotifications" onclick="toggle('enableNotifications')" /> Enable notifications</label>
<script src="js/stub.js"></script>
<script src="js/util.js"></script>
<script src="js/popup.js"></script>
</body>
</html>
|