blob: 7ee5cb77aa840c6bbbd8dec946b07fe204d0b3d9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!DOCTYPE html>
<html>
<head>
<title>REDIRECTOR</title>
<link rel="stylesheet" href="css/popup.css" />
<meta charset="UTF-8">
<script src="js/firefox/page-shim.js"></script>
<script src="js/angular.min.js"></script>
<script src="js/popup.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>
|