This repository has been archived by the owner on Sep 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
124 lines (112 loc) · 4.19 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
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<html lang="en">
<head>
<script src="/js/popup.js"></script>
<link href="/css/popover.css" rel="stylesheet" />
</head>
<body>
<main class="main-body">
<header>
<div class="title">
FIFA Ultimate Team Tools
</div>
<button type="button" id="btn-inject">
Inject
</button>
</header>
<section class="stats">
<div class="stats-list">
<div class="title">
Transfer list:
</div>
<div class="statuses">
<div class="status">
<b>Total: </b><span id="tradepile-total">0</span>
</div>
<div class="status">
<b>Sold: </b><span id="tradepile-sold">0</span>
</div>
<div class="status">
<b>Unsold: </b><span id="tradepile-unsold">0</span>
</div>
<div class="status">
<b>Active: </b><span id="tradepile-active">0</span>
</div>
<div class="status">
<b>Unactive: </b><span id="tradepile-inactive">0</span>
</div>
</div>
</div>
<div class="stats-list">
<div class="title">
Transfer targets:
</div>
<div class="statuses">
<div class="status">
<b>Total: </b><span id="transfers-total">0</span>
</div>
<div class="status">
<b>Active: </b><span id="transfers-active">0</span>
</div>
<div class="status">
<b>Watched: </b><span id="transfers-watching">0</span>
</div>
<div class="status">
<b>Won: </b><span id="transfers-won">0</span>
</div>
<div class="status">
<b>Expired: </b><span id="transfers-expired">0</span>
</div>
</div>
</div>
</section>
<section class="toolset">
<div class="title">
Sniping tool:
</div>
<div class="tools">
<div class="tool tool-middle">
<b class="description">
Search for player:
</b>
<div class="input-wrapper">
<input type="text" name="player-search" id="player-search">
</div>
<button type="button" id="btn-search-players">
Search
</button>
</div>
<div class="tool tool-single tool-hidden" id="player-buy-list-tool">
<table class="player-table">
<thead>
<tr>
<th>Photo</th>
<th>Name</th>
<th>BID</th>
<th>BIN</th>
<th>Options</th>
</tr>
</thead>
<tbody id="player-buy-list">
</tbody>
</table>
</div>
<div class="tool tool-single">
<table class="player-table">
<thead>
<tr>
<th>Photo</th>
<th>Name</th>
<th>Club</th>
<th>Country</th>
<th>Rating</th>
</tr>
</thead>
<tbody id="player-search-list">
</tbody>
</table>
</div>
</div>
</section>
</main>
</body>
</html>