forked from GoogleChrome/chrome-extensions-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
19 lines (19 loc) · 651 Bytes
/
popup.html
File metadata and controls
19 lines (19 loc) · 651 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<html>
<head>
<link rel="stylesheet" href="third-party/jquery-ui.css">
<link rel="stylesheet" href="third-party/jquery-ui.structure.css">
<link rel="stylesheet" href="third-party/jquery-ui.theme.css">
<link rel="stylesheet" href="popup.css">
<script src="third-party/jquery-1.12.4.js"></script>
<script src="third-party/jquery-ui-1.12.1.js"></script>
</head>
<body style="width: 400px">
<div>Search Bookmarks: <input id="search"></div>
<div id="bookmarks"></div>
<div id="editdialog"></div>
<div id="deletedialog"></div>
<div id="adddialog"></div>
<div id="test-frame"></div>
<script src="popup.js"></script>
</body>
</html>