-
Notifications
You must be signed in to change notification settings - Fork 5
/
popup.html
31 lines (31 loc) · 855 Bytes
/
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
30
31
<!doctype html>
<html>
<head>
<style>
html,body { margin: 0; padding: 0; font-size: 10pt; }
.main { margin: 1em; }
#humansText { font-family: "Courier New", Courier, monospace; white-space: pre-wrap; min-width: 700px; }
body { height: 2em; }
#humansLink,#humansLink:visited {
font-family: Arial, Helvetica, sans-serif;
background: #eef; color: #00b; border: 1px solid #ccf;
text-decoration: none;
display: none;
}
.about,.about:visited {
font-size: small;
opacity: 0.3; color: black; font-family: "Times New Roman", serif;
text-decoration: underline;
margin-left: 0.2em;
}
</style>
</head>
<body>
<div class="main">
<pre id="humansText"></pre>
<a id="humansLink" target="_blank">in new tab</a>
</div>
<script src="jquery.min.js"></script>
<script src='popup.js'></script>
</body>
</html>