-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
executable file
·30 lines (24 loc) · 1.13 KB
/
popup.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title id="main-title">0</title>
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="css/popup.css" type="text/css">
</head>
<body>
<div class="header">
<div class="logo"><img src="icons/icon_48.png"></div>
<div class="content"><span id="title">0</span>
<br>
<small id="version">0</small>
</div>
</div>
<hr>
<button id="enableButton" class="x-btn" style="display: none;"><i class="fa fa-play" aria-hidden="true"></i>  Enable Blocker</button>
<button id="disableButton" class="x-btn" style="display: none;"><i class="fa fa-pause" aria-hidden="true"></i>  Disable Blocker</button>
<button id="settingsButton" class="w-btn"><i class="fa fa-cog" aria-hidden="true"></i>  Settings</button>
<button id="historyButton" class="w-btn"><i class="fa fa-history" aria-hidden="true"></i>  History</button>
<script src="js/popup.js"></script>
</body>
</html>