1 <!doctype html> 2 <!-- 3 * Copyright (c) 2010 The Chromium Authors. All rights reserved. 4 * Use of this source code is governed by a BSD-style license that can be 5 * found in the LICENSE file. 6 --> 7 <html> 8 <head> 9 <link rel="stylesheet" type="text/css" href="popup.css"> 10 <script src="popup.js"></script> 11 </head> 12 <body onload="onLoad()"> 13 14 <div id="spacer_dummy"></div> 15 <div id="outer"> 16 17 <div id="appstore_link" style="display:none"> 18 <p>No apps installed.</p><p> 19 <a href='javascript:chrome.tabs.create({"url":"https://chrome.google.com/webstore", "selected":true});window.close();'>Go get some</a></p> 20 </div> 21 22 <div id="search_container"> 23 <input id="search" type="text" placeholder="type to search" 24 oninput="onSearchInput()" spellcheck="false"> 25 </div> 26 27 <div id="apps"></div> 28 29 </div> 30 31 </body> 32 </html> 33