mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-16 06:18:35 +02:00
* Add an example using webRequest.getSecurityInfo() * Don't collect root certs if isUntrusted===true
22 lines
449 B
HTML
22 lines
449 B
HTML
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<link rel="stylesheet" href="popup.css"/>
|
|
<title>Root cert stats</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="no-data">No data to display yet</div>
|
|
<table class="root-cert-table hidden">
|
|
<thead>
|
|
<tr>
|
|
<th colspan="2">Certification Authorities</th>
|
|
</tr>
|
|
</thead>
|
|
</table>
|
|
<script src="popup.js"></script>
|
|
</body>
|
|
</html>
|