blob: b00b2ee09f1bd412fcfbebd110cc1756c1cff3b0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!DOCTYPE html>
<html>
<head>
<title>REDIRECTOR</title>
<link rel="stylesheet" href="css/popup.css" />
<meta charset="UTF-8">
<script src="js/popup-scriptload.js"></script>
</head>
<body ng-app="popupApp" ng-controller="PopupCtrl">
<h1>REDIRECTOR</h1>
<div class="disabled"><span ng-show="disabled">Disabled</span></div>
<button ng-click="toggleDisabled()">{{disabled ? 'Enable Redirector' : 'Disable Redirector'}}</button>
<button ng-click="openRedirectorSettings()">Edit Redirects</button>
</body>
</html>
|