forked from hshim/history-session-browser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
34 lines (30 loc) · 1.17 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
<!DOCTYPE html>
<html>
<head>
<script src="../jquery-1.8.3.min.js"></script>
<title>Getting Started Extension's Popup</title>
<style>
body {
min-width:250px;
width:1000px;
}
</style>
<!-- JavaScript and HTML must be in separate files for security. -->
<script src="popup.js"></script>
<script src="select.js"></script>
</head>
<body>
<div class="header">
<div class="group_icons">
<img src="images/computer.png" width="30" height="30" align="right" style="padding:5px" />
<img src="images/news.png" width="30" height="30" align="right" style="padding:5px" />
<img src="images/running.png" width="30" height="30" align="right" style="padding:5px" />
<img src="images/shopping.png" width="30" height="30" align="right" style="padding:5px" />
<img src="images/studying.png" width="30" height="30" align="right" style="padding:5px" />
<img src="images/travel.png" width="30" height="30" align="right" style="padding:5px" />
</div>
</div>
<div id="typedUrl_div"></div>
</body>
<link rel="stylesheet" type="text/css" media="screen" href="style.css" />
</html>