-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
53 lines (53 loc) · 1.42 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="index.css" />
<link
rel="stylesheet"
href="https://unpkg.com/[email protected]/build/pure-min.css"
integrity="sha384-yHIFVG6ClnONEA5yB5DJXfW2/KC173DIQrYoZMEtBvGzmf0PKiGyNEqe9N6BNDBH"
crossorigin="anonymous"
/>
</head>
<body>
<main>
<div class="container" id="container">
<h1 class="heading">LCP Debugger</h1>
<div id="main-content">
<div id="lcp-element"></div>
<table class="pure-table pure-table-striped">
<thead>
<th>Title</th>
<th>Time Spent</th>
</thead>
<tbody>
<tr>
<td>Time to first byte</td>
<td id="ttfb"></td>
</tr>
<tr>
<td>Resource load delay</td>
<td id="rld"></td>
</tr>
<tr>
<td>Resource load time</td>
<td id="rlt"></td>
</tr>
<tr>
<td>Element render delay</td>
<td id="erd"></td>
</tr>
</tbody>
<tfoot>
<tr>
<td><strong>Total: </strong></td>
<td id="lcp-total"></td>
</tr>
</tfoot>
</table>
</div>
</div>
</main>
</body>
<script src="popup.js"></script>
</html>