-
Notifications
You must be signed in to change notification settings - Fork 0
/
help.html
84 lines (77 loc) · 2.42 KB
/
help.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
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
<!DOCTYPE html>
<style type="text/css">
body {
min-width: 100px;
position: relative;
vertical-align:middle;
}
.label-container {
padding-top: 8px;
padding-bottom: 10px;
display: flex;
flex-direction: row;
align-items: center;
}
.label-title {
font-weight: bold;
padding-right: 5px;
}
.origin-image {
margin-top: -1px;
}
.cache-image {
margin-top: -1px;
}
.debug-container {
padding-top: 15px;
padding-bottom: 5px;
}
</style>
<meta charset="UTF-8">
<html><head><title>Signed Exchange (SXG) Validator</title></head><body>
<h2>Welcome to the help page of the Signed Exchange Validator Chrome Extension.</h2>
<p>
This tool is intended to help website administrators determine the status
of their Signed Exchange deployments. It may include the status of the origin
URL, its corresponding Google SXG Cache URL as well as the Google SXG Certificate
URL.
</p>
<div class="label-container">
<div class="origin-image" alt="Origin URL State" id="originimg">
The different images the tool displays indicates the status of either the origin, cache or cert.
<br><br>
... means it's processing.
<br>
⌛ means not in cache yet.
<br>
✅ means everything's ok.
<br>
❌ means there's an error or the URL is not a Signed Exchange.
<br>
</div>
</div>
<table border="1" cellpadding="3" style="border-collapse:collapse;">
<tr>
<td style="min-width:100px" nowrap>URL</td>
<td align="left"><span id="url">The URL of the SXG's origin, cache or SXG certificate.</span></td>
</tr>
<tr>
<td style="min-width:100px" nowrap>Content Type</td>
<td align="left"><span id="contenttype">The content type of the URL.</span>
</td>
</tr>
<tr>
<td nowrap>Warning Message</td>
<td align="left"><p id="cachewarning">
Warning message from the Google Cache server indicating the state of the cache. If this is present, then it indicates an error that prevented the SXG from meeting the cache requirements.</p></td>
</tr>
<tr>
<td nowrap>Location</td>
<td align="left"><span id="cachelocation">
The location of the URL. If this is present, then URL has not yet been fetched by the cache. This is not an error in your SXG.</span></td>
</tr>
</table>
<div class="debug-container">
<a href="https://developers.google.com/search/docs/advanced/experience/signed-exchange" target="_blank" alt="Debug">Debugging SXGs</a>
</div>
</body></html>