-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpopup.html
More file actions
100 lines (73 loc) · 2.43 KB
/
Copy pathpopup.html
File metadata and controls
100 lines (73 loc) · 2.43 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
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
<!DOCTYPE html>
<html>
<head>
<style>
button {
outline: none;
}
body {
width: 350px;
}
.loading {
background-image: url('Loading.gif');
background-repeat: no-repeat;
float: right;
height: 100px;
}
div.selectbox {
text-align: center;
}
progress[value] {
width: 150px;
height: 10px;
}
</style>
</head>
<body>
<div style="text-align:center;">
<p>Welcome to the assistant.
<b>Press the Refresh! button to start!</b>
There are 2 tabs, Characters and Mission tabs. You can refresh each tab by pressing their refresh button.
If you encounter a bug please message me, if the extension freezes then reinstalling does the trick.
If a new character is released or a balance update has happened then press refresh to repopulate the list.
If you have completed a new mission, press Get Missions button to refresh.
Refreshing
may
take a while!
<br>
During battle you can select a character from this list to check out their abilties/chakra/cooldowns.
<br>
<b>Plugin made by: Plastic#9999 (AKA Mastermind)</b>
</p>
</div>
<br>
<button class="tabClass">Characters</button>
<button class="tabClass">Missions</button>
<div id="Characters" class="tabcontent">
<br>
<button id="refresh">Refresh!</button>
<div style="display:none" class="loading" ;>Loading
</div>
<br>
<div class="selectbox">
<select id="getData">
<option>Choose a character</option>
</select>
</div>
<div class="characterDescription"></div>
</div>
<div style="display:none" id="Missions" class="tabcontent">
<br>
<button class="getMissions">Get missions</button>
<div style="display:none" class="loading" ;>Loading
</div>
<br>
<div class="missionInfo">
</div>
</div>
<link href="https://cdn.jsdelivr.net/npm/select2@4.0.13/dist/css/select2.min.css" rel="stylesheet" />
<script src="jquery.js"></script>
<script src="https://cdn.jsdelivr.net/npm/select2@4.0.13/dist/js/select2.min.js"></script>
<script src="popup.js"></script>
</body>
</html>