-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
35 lines (35 loc) · 1.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Poe.trade ignore list</title>
<link rel="stylesheet" href="css/popup.css">
</head>
<body>
<div class="container">
<ul class="tabs">
<li class="tab active" data-tab="tab-1">Blocked Sellers</li>
<li class="tab" data-tab="tab-2">Mass Add Sellers</li>
</ul>
<div id="tab-1" class="tab-content active">
<h3>List of blocked poe.trade sellers:</h3>
<p class="no-items">No items</p>
<ul class="blocked-seller-list"></ul>
<div class="action-container">
<a href="#" class="clear-all-users">Revove all from blacklist</a>
</div>
</div>
<div id="tab-2" class="tab-content">
<h3 class="mass-add-title">Add multiple sellers to block:</h3>
<span>(one per line, case-sensitive)</span>
<textarea class="sellers-to-block-textarea"></textarea>
<div class="action-container">
<a href="#" class="parse-mass-add-sellers">Add to blacklist</a>
</div>
</div>
</div>
<script src="vendor/jquery-3.0.0.min.js"></script>
<script src="vendor/underscore-min.js"></script>
<script src="js/popup.js"></script>
</body>
</html>