-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpopup.html
32 lines (29 loc) · 988 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="popup.css"></link>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
</head>
<body>
<div>
<table class="table">
<tbody>
<tr>
<th scope="row">Overall</th>
<td id="overall">4.3</td>
</tr>
<tr>
<th scope="row">Last 60</th>
<td id="last60">4.2</td>
</tr>
<tr>
<th scope="row">已選取<span id="selectedCount">(30)</span></th>
<td id="selection">4.1</td>
</tr>
</tbody>
</table>
</div>
<script charset="utf-8" src="popup.js"></script>
</body>
</html>