mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-27 13:29:34 +07:00
20 lines
674 B
HTML
20 lines
674 B
HTML
<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>
|
|
<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>
|