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
31 lines (25 loc) · 626 Bytes
/
popup.html
File metadata and controls
31 lines (25 loc) · 626 Bytes
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
<!doctype html>
<!--
* Copyright (c) 2010 The Chromium Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
-->
<html>
<head>
<link rel="stylesheet" type="text/css" href="popup.css">
<script src="popup.js"></script>
</head>
<body>
<div id="spacer_dummy"></div>
<div id="outer">
<div id="appstore_link">
<p>No apps installed.</p><p>
<button>Go get some</button></p>
</div>
<div id="search_container">
<input id="search" type="text" placeholder="type to search" spellcheck="false">
</div>
<div id="apps"></div>
</div>
</body>
</html>