-
Notifications
You must be signed in to change notification settings - Fork 81
/
options.html
95 lines (73 loc) · 3.48 KB
/
options.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link type="text/css" href="css/options.css" rel="stylesheet">
<title>MinerBlock - Settings</title>
</head>
<body id="body">
<div class="header">
<div class="logo"><img src="icons/icon.svg" width="48"></div>
<div class="content"><span id="title">MinerBlock Options</span></div>
</div>
<div class="tabcontainer">
<a class="tablinks setting-btn">Settings</a>
<a class="tablinks filters-btn">My Filters</a>
<a class="tablinks Whitelist-btn">Whitelist</a>
<a class="tablinks about-btn">About</a>
</div>
<div class="optcontainer">
<div class="tab-cnt">
<input type="checkbox" id="mbShowCount" class="opt" value="1">
<label for="mbShowCount">Show count of blocked miners</label><br>
<!-- <input type="checkbox" id="mbShowAlert" class="opt" value="1">
<label for="mbShowAlert">Show alerts</label><br> -->
</div>
<div class="tab-cnt">
<input type="checkbox" id="mbFilters" class="opt" value="1" disabled>
<label for="mbFilters"><a href="assets/filters.txt" target="_blank">MinerBlock filters</a></label><br>
<p>One filter per line. Make sure it matches one of the following patterns : <code>*://*.domain.com/*</code> or <code>*://*.domain.com/path*</code></p>
<textarea rows="10" id="mbUserFilters" class="opt"></textarea>
<button class="btn" id="mbUserFiltersSave"><i class="fa fa-floppy-o" aria-hidden="true"></i>  Save</button>
</div>
<div class="tab-cnt">
MinerBlock is disabled for domains listed below.
<br>
<br>
<input type="text" id="mbWhiteListDomain" placeholder="e.g. www.domain.com, domain.com">
<button class="btn" id="mbWhiteListAdd"><i class="fa fa-plus" aria-hidden="true"></i>  Add Domain</button>
<br><br>
<div class="cnt">
<select size="15" id="mbWhiteList" class="opt">
</select>
<button class="btn" id="mbWhiteListRemove"><i class="fa fa-minus" aria-hidden="true"></i>  Remove Domain</button>
</div>
</div>
<div class="tab-cnt">
<p>
<h3>MinerBlock v1.2.18</h3>
Please email your feedback to cryptominedev@gmail.com.
<ul>
<li><a href="https://github.com/xd4rker/MinerBlock/releases" target="_blank">Changelog</a></li>
<li><a href="https://github.com/xd4rker/MinerBlock/wiki/Privacy-policy" target="_blank">Privacy policy</a></li>
</ul>
</p>
<hr>
<h4>Credit</h4>
<ul>
<li><a href="http://fontawesome.io" target="_blank">Font Awesome</a> by <a href="https://github.com/davegandy" target="_blank">Dave Gandy</a></li>
<li><a href="https://www.shareicon.net/author/tools-and-utensils" target="_blank">Icon</a></li>
</ul>
<hr>
<h4>Donations</h4>
<p>If you liked MinerBlock, please feel free to donate :</p>
<p><a href="https://www.paypal.me/xd4rker/10" target="_blank"><img src="icons/donations/paypal.svg" alt="paypal" style="max-width:100%;"></a>
<a href="https://blockchain.info/payment_request?address=1PYj4Bd6YwGzqjb46Ww6buGpTUEt3EZLx4" target="_blank"><img src="icons/donations/btc.svg" alt="bitcoin" style="max-width:100%;"></a>
<a href="https://etherdonation.com/d?to=0x3057b2648d905912ef511674aa3ffe9fcf5140db" target="_blank"><img src="icons/donations/eth.svg" alt="ethereum" style="max-width:100%;"></a>
<a href="http://a.co/ccGChcp" target="_blank"><img src="icons/donations/amazon.svg" alt="amazon" style="max-width:100%;"></a></p>
</div>
</div>
<script type="text/javascript" src="js/options.js"></script>
</body>
</html>