-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpopup.html
57 lines (48 loc) · 1.84 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>-</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="main">
<form action="#" spellcheck="false">
<!-- <div id="type"></div> -->
<div id="buttons">
<button type="button" id="reload">Reload</button>
<button type="button" id="copy">Copy all</button>
<button type="button" id="download">Download Keys</button>
<button type="button" id="clear">Clear</button>
</div>
<div class="clear"></div>
<div id="table">
<p>Loading...</p>
<!--<table>
<thead>
<tr>
<th class="td-nome">Name</th>
<th class="td-value" colspan="3">Value</th>
</tr>
</thead>
<tbody>
<tr>
<td class="td-nome"><input type="text" value="some key" data-key="some key"></td>
<td class="td-value"><input type="text" value="some value"></td>
<td class="td-icon minus"><img src="img/minus.png"></td>
<td class="td-icon open"><img src="img/open.png"></td>
</tr>
</tbody>
</table>-->
</div>
</form>
</div>
<div id="json">
<button id="back">❮</button>
<pre id="code"></pre>
</div>
<div id="loading"></div>
<script src="jquery.js"></script>
<script src="script.js"></script>
</body>
</html>