aboutsummaryrefslogtreecommitdiff
path: root/popup.html
blob: f651ab0ec28e5723c9b0bd4a8bd864d51006f1dd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<html>
	<head>
		<title>Redirector</title>
		<link rel="stylesheet" href="css/popup.css" />
		<meta charset="UTF-8">
		<script src="js/angular.min.js"></script>
		<script src="js/popup.js"></script>
	</head>
	<body ng-app="popupApp" ng-controller="PopupCtrl">
		<h1><span></span>edirector</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>