-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
38 lines (38 loc) · 1014 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
32
33
34
35
36
37
38
<!doctype html>
<html>
<head>
<title>WebPageDiff</title>
<link rel="stylesheet" href="bootstrap.min.css">
<style>
body {
min-width:150px;
overflow-x:hidden;
margin:5px;
}
div.clickable {
cursor: pointer;
display: inline;
color: CornflowerBlue;
}
</style>
<!-- JavaScript and HTML must be in separate files for security. -->
</head>
<body>
<h4>WebPageDiff</h4>
<ul class="unstyled">
<li>
<div class="clickable" id="addPage"><i class="icon-plus-sign"></i> Add Page</div>
</li>
<li>
<div class="clickable" id="showDiff"><i class="icon-eye-open"></i> Show Diff</div>
</li>
<li>
<div class="clickable" id="checkDiffs"><i class="icon-refresh"></i> Check Diffs</div>
</li>
<li>
<div class="clickable" id="manageList"><i class="icon-list"></i> Manage List</div>
</li>
</ul>
<script src="js/popup.js"></script>
</body>
</html>