-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
54 lines (54 loc) · 3.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="popup.css" />
</head>
<body class="dark">
<div>
<div class="popupmenu">
<input id="input-search" name="search" placeholder="Search formats" value="" class="textbox autofocus" autocomplete="off">
<button id="btn-chalcode" class="button">Challenge Code</button>
<button id="btn-help" class="button"><strong>?</strong></button>
<button id="btn-power" class="button">
<!-- from Gnome Symbolic Icon Theme, modified -->
<svg width='16px' height='16px'>
<g transform='translate(-100,-685.97574)'>
<path d='m 104.84002,687.8125 a 0.99998337,1.0002168 0 0 0 -0.34813,0.13393 c -1.05343,0.60965 -1.93145,1.46598 -2.54405,2.51786 -1.93955,3.33036 -0.81232,7.64928 2.51727,9.58928 3.32959,1.94001 7.64749,0.8125 9.58705,-2.51786 1.93955,-3.33035 0.81232,-7.64927 -2.51727,-9.58928 a 1.0081498,1.0083851 0 1 0 -1.01762,1.74107 c 2.39572,1.39588 3.18978,4.43408 1.79422,6.83036 -1.39555,2.39628 -4.43303,3.19052 -6.82876,1.79464 -2.38544,-1.38989 -3.19179,-4.41207 -1.821,-6.80357 l 0.0268,-0.0268 c 0.43759,-0.75138 1.06851,-1.38594 1.821,-1.82142 a 0.99998337,1.0002168 0 0 0 -0.66949,-1.84822 z' id='path3869-2' style='color:#000000;fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:2.333606;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;'/>
<path d='M 107.78125,686 A 1.0001,1.0001 0 0 0 107,687 l 0,5 a 1.0001,1.0001 0 1 0 2,0 l 0,-5 a 1.0001,1.0001 0 0 0 -1.21875,-1 z' id='path4710' style='color:#000000;fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;'/>
</g>
</svg>
</button>
</div>
<span name="formats">
<ul id="menu-l" class="menu-l"></ul>
<ul id="menu-m" class="menu-m"></ul>
<ul id="menu-r" class="menu-r"></ul>
<span id="help" class="help-container">
<h1>Notes for why the extension might be misbehaving or not working</h1>
<p class="help">
- The extension is inactive on installation. Check the power button at the top right corner; its color is blue when active.
</p>
<p class="help">
- The extension needs to download metagame data from GitHub at least once; it can't work otherwise.
</p>
<p class="help">
- Only the National Dex 35 Pokes format will display the selected meta. Other formats like NDAG retain their lists of pokemon.
</p>
<p class="help">
- Certain extended metas modify global data like pokemon stats and move base power for convenience. This <strong>will</strong> carry over to other formats and in-battle tooltips. Select one of the main metas or turn the extension off to fix.
</p>
<h1>Misc info</h1>
<p class="help">
<a href="https://github.com/swordfishtr/35PokesExtension">Check out the open source code of this extension!</a>
</p>
</span>
</span>
</div>
<script src="popup.js"></script>
</body>
</html>