forked from freakitties/axieExt
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpopup.html
More file actions
66 lines (65 loc) · 2.8 KB
/
popup.html
File metadata and controls
66 lines (65 loc) · 2.8 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="lib/jquery-3.3.1.slim.js"></script>
<script src="lib/popper.js"></script>
<script src="lib/bootstrap.js"></script>
<script src="options.js"></script>
<script src="popup.js"></script>
<link rel="stylesheet" href="lib/bootstrap.css">
<style>
.main {
width: 280px;
}
body{
font-family: 'Lucida Grande', 'Segoe UI', Tahoma, 'DejaVu Sans', Arial, sans-serif;
}
</style>
</head>
<body class="main small">
<header class="text-center pt-2"><h6>Explorer's Freak Axie Extension</h6></header>
<hr class="mt-0">
<div class="container">
<div >
<input type="checkbox" id="enableOption" class="mr-1">
<label for="enableOption">Enable</label>
</div>
<div >
<input type="checkbox" id="minimalOption" class="mr-1">
<label for="minimalOption" title="All GUI features are smaller and more compact.">Use Razor's Shaved View</label>
</div>
<div >
<input type="number" id="japanCount" class="mr-1">
<label for="japanCount" title="Alert on this JP part count.">Japan part alert threshold.</label>
</div>
<div >
<input type="checkbox" id="eggParentOption" class="mr-1">
<label for="eggParentOption" title="Fetch egg-parent details.">View egg parent details</label>
</div>
<div >
<input type="checkbox" id="showAuction" class="mr-1">
<label for="showAuction" title="Render auction details.">View auction details</label>
</div>
<div >
<input type="number" id="fireThreshold" class="mr-1">
<label for="fireThreshold" title="The purity that should attach fire.">Purity "fire" threshold.</label>
</div>
<div >
<input type="checkbox" id="usePost" class="mr-1">
<label for="usePost" title="Enable drag-drop posting of axies to secondary site.">Use Axie Post</label>
</div>
<div >
<input type="text" id="postAddress" class="mr-1">
<label for="postAddress" title="If using axie post - where should they be sent?">Axie postbox address.</label>
</div>
<!--
<div >
<input type="checkbox" id="showBreedsStats" class="mr-1">
<label for="showBreedsStats">Show breed count and stats</label>
</div>
-->
<a href="https://freakitties.github.io/axie/" target="_blank">More tools</a>
</div>
</body>
</html>