-
Notifications
You must be signed in to change notification settings - Fork 39
/
popup.html
38 lines (37 loc) · 1.25 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
<!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>Freak's 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="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>