-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
29 lines (29 loc) · 1.24 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
<!--
/*******************************************************************************
*
* HTTPS Mixed Content Locator Popup HTML
* ______________________________________
* [2017] Pericror
* All Rights Reserved
* Use of this source code is governed by the license found in the LICENSE file.
*/
-->
<!doctype html>
<html>
<head>
<title>Insecurities</title>
<link rel="stylesheet" type="text/css" href="popup.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet">
<script src="clipboard.min.js"></script>
<script src="popup.js"></script>
</head>
<body>
<div id="passiveMixedContent" class="divider">Passive Mixed Content<br><span class="small">(click <span class="material-icons" style="font-size:inherit">gps_fixed</span> to view element on page)</span></div>
<table name="passiveMixedContent"></table>
<div id="activeMixedContent" class="divider">Active Mixed Content<br><span class="small">(elements blocked by browser)</span></div>
<table name="activeMixedContent"></table>
<div id="default"><i class="material-icons">info_outline</i>No Mixed Content Detected.</div>
<div id="footer">HTTPS Mixed Content Locator powered by <a href="">Pericror</a></div>
</body>
</html>