-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
47 lines (40 loc) · 1.13 KB
/
popup.html
File metadata and controls
47 lines (40 loc) · 1.13 KB
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
<!doctype html>
<html>
<head>
<title>SafeCrawl</title>
<style>
body {
min-width: 357px;
overflow-x: hidden;
}
img {
margin: 5px;
border: 2px solid black;
vertical-align: middle;
width: 75px;
height: 75px;
}
</style>
<link href="styles.css" rel="stylesheet">
<!--
- JavaScript and HTML must be in separate files: see our Content Security
- Policy documentation[1] for details and explanation.
-
- [1]: http://developer.chrome.com/extensions/contentSecurityPolicy.html
-->
<script src="targets.js"></script>
<script src="visualizations.js"></script>
</head>
<body>
<p><b>SafeCrawler</b> is a Chrome extension that uses affective visualizations to keep websurfers safe.
It highlights unsafe HTML elements in a way to invoke an emotional reponse. Right now it is experimental.
</p>
<p>To use, select which items have which displays below.
Then, <b>refresh the page</b> to ensure that changes take effect.
</p>
<hr>
<div id="settingspanel">
</div>
</body>
<script src="popup.js"></script>
</html>