-
Notifications
You must be signed in to change notification settings - Fork 79
/
popup.html
36 lines (30 loc) · 1.43 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
31
32
33
34
35
36
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>MinerBlock</title>
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="css/popup.css" type="text/css">
</head>
<body>
<div class="wrap">
<div class="logo"><img src="icons/icon.svg" width="48"></div>
<div class="content"><span id="title">MinerBlock</span><br><small>Version 1.2.18</small></div>
</div>
<div id="hideWl">
<div id="hidePs">
<h2>Blocked Miners</h2>
<p id="blockedNum">0</p>
<table id="blockedDomains" style="width:100%">
</table>
<hr>
</div>
<button id="startButton" class="x-btn" style="display: none;"><i class="fa fa-play" aria-hidden="true"></i>  Enable Blocker</button>
<button id="pauseButton" class="x-btn" style="display: none;"><i class="fa fa-pause" aria-hidden="true"></i>  Disable Blocker</button>
</div>
<button id="addWlist" class="w-btn" style="display: none;"><i class="fa fa-plus-circle" aria-hidden="true"></i>  Add to whitelist</button>
<button id="removeWlist" class="w-btn" style="display: none;"><i class="fa fa-minus-circle" aria-hidden="true"></i>  Remove from whitelist</button>
<button id="settingsBtn" class="w-btn"><i class="fa fa-wrench" aria-hidden="true"></i>  Settings</button>
<script src="js/popup.js"></script>
</body>
</html>