-
Notifications
You must be signed in to change notification settings - Fork 1
/
popup.html
64 lines (60 loc) · 1.89 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
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
<!doctype html>
<html>
<head>
<title>Compassion-O-Matic Popup</title>
<style>
body {
font-family: "Segoe UI", "Lucida Grande", Tahoma, sans-serif;
font-size: 100%;
width: 300px;
}
img {
display: block;
margin: auto;
}
h2 {
text-align: center;
}
.checkboxes {
list-style: none;
}
blockquote {
border-bottom: 1px solid gray;
font-size: 75%;
font-style: italic;
}
footer {
display: block;
color: #666;
font-style: italic;
font-size: 65%;
}
</style>
<script src="popup.js"></script>
<base target="_blank" />
</head>
<body>
<img src="iconfull.png" />
<img src="smallblack.png">
<blockquote>
<p>"A migrant chooses to leave, whereas a refugee is forced to leave."</p>
<footer>1951 Refugee Convention</footer>
</blockquote>
<ul class="checkboxes">
<li><label>
<input type="checkbox" id="extensionDisabled"/>
Pause Compassion-O-Matic
</label></li>
<li><label>
<input type="checkbox" id="showMarker"/>
Mark changes with *stars
</label></li>
<br/>
<li>(Reload your tabs to see changes)</li>
</ul>
<footer class="credits">
Compassion-O-Matic is made for you with love by Phil, and based on code from <a href="http://9to5google.com/2015/06/14/how-to-make-a-chrome-extensions/">http://9to5google.com/2015/06/14/how-to-make-a-chrome-extensions/</a>.
Icon made by <a href="http://www.freepik.com" title="Freepik">Freepik</a> from <a href="http://www.flaticon.com" title="Flaticon">www.flaticon.com</a> is licensed under <a href="http://creativecommons.org/licenses/by/3.0/" title="Creative Commons BY 3.0">CC BY 3.0</a> <!-- http://www.flaticon.com/free-icon/men-shaking-hands_10576 -->
</footer>
</body>
</html>