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 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
|
<!DOCTYPE HTML>
<html>
<!--
Copyright 2012 The Chromium Authors
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<head>
<meta charset="utf-8">
<meta name="color-scheme" content="light dark">
<!-- Don't use automatic scaling on mobile -->
<meta name="viewport" content="width=device-width, initial-scale=1.0,
maximum-scale=1.0, user-scalable=no">
<link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
<link rel="stylesheet" href="main.css">
</head>
<body id="events-view-drop-target">
<div id="tab-list">
</div>
<div id="main-tab-contents">
<div id="events-view-tab-content" class="content-box">
The net-internals events viewer and related functionality has been removed.
Please use <a href="chrome://net-export">chrome://net-export</a> to save netlogs and the external <a href="https://netlog-viewer.appspot.com/">netlog_viewer</a> to view them.
</div>
<div id="proxy-view-tab-content" class="content-box">
<input type="button" value="Re-apply settings"
id="proxy-view-reload-settings">
<input type="button" value="Clear bad proxies"
id="proxy-view-clear-bad-proxies">
</div>
<div id="dns-view-tab-content" class="content-box">
<h4>DNS lookup</h4>
<p>Input a domain name to look up:</p>
<form id="dns-view-dns-lookup-form">
Domain: <input type="text" id="dns-view-dns-lookup-input" type="url"
placeholder="example.com">
<input type="submit" value="Lookup" id="dns-view-dns-lookup-submit">
</form>
<div class="output-box" id="dns-view-dns-lookup-output">
</div>
</h4>
<h4>
Host resolver cache
<button id="dns-view-clear-cache">Clear host cache</button>
</h4>
</div>
<div id="sockets-view-tab-content" class="content-box">
<ul>
<li>
<input type="button" value="Close idle sockets"
id="sockets-view-close-idle-button">
</li>
<li>
<input type="button" value="Flush socket pools"
id="sockets-view-flush-button">
<span class="warning-text">
May break pages with active connections
</span>
</li>
</ul>
</div>
<div id="domain-security-policy-view-tab-content" class="content-box">
<!-- This UI allows a user to query and update the browser's list of
HSTS/PKP domains. -->
<h3>HSTS/PKP</h3>
<div class="deindent-header">
HSTS is HTTP Strict Transport Security: a way for sites to elect to
always use HTTPS. See
<a href="https://www.chromium.org/hsts" target="_blank">
https://www.chromium.org/hsts</a>. PKP is Public Key Pinning: Chrome
"pins" certain public keys for certain sites in official builds.</div>
<h4>Add HSTS domain</h4>
<p>Input a domain name to add it to the HSTS set:</p>
<form id="hsts-view-add-form">
Domain: <input type="text" id=hsts-view-add-input type="url"
placeholder="example.com">
<label>Include subdomains for STS: <input type="checkbox"
id="hsts-view-check-sts-input">
</label>
<input type="submit" value="Add" id="hsts-view-add-submit">
</form>
<h4>Query HSTS/PKP domain</h4>
<p>Input a domain name to query the current HSTS/PKP set:</p>
<form id="hsts-view-query-form">
Domain: <input type="text" id="hsts-view-query-input" type="url"
placeholder="example.com">
<input type="submit" value="Query" id="hsts-view-query-submit">
</form>
<div class="output-box" id="hsts-view-query-output">
</div>
<h3>Delete domain security policies</h3>
<p>
Input a domain name to delete its dynamic HSTS policy.
(<i>You cannot delete preloaded entries.</i>):
</p>
<form id="domain-security-policy-view-delete-form">
<label>Domain: <input type="text"
id="domain-security-policy-view-delete-input"
type="url"
placeholder="example.com"></label>
<input type="submit" value="Delete"
id="domain-security-policy-view-delete-submit">
</form>
</div>
<div id="shared-dictionary-view-tab-content" class="content-box">
<h4>Shared Dictionary</h4>
<div>
<button value="Reload" id="shared-dictionary-reload">Reload</button>
<button id="shared-dictionary-view-clear-all">Clear all</button>
<div class="output-box" id="shared-dictionary-output">
</div>
</div>
</div>
<if expr="chromeos_ash">
<div id="chromeos-view-tab-content" class="content-box">
<h4 class="tab-title">Import ONC file</h4>
<div>
Import ONC File has moved to
<a href="chrome://network#general">chrome://network#general</a>.
</div>
<h4>Store system logs</h4>
<div>
Store system logs has moved to
<a href="chrome://network#logs">chrome://network#logs</a>.
</div>
<h4>Network Debugging</h4>
<div>
Network Debugging has moved to
<a href="chrome://network#logs">chrome://network#logs</a>.
</div>
</div>
</if>
</div>
</body>
<script type="module" src="index.js"></script>
</html>
|