Advertisement
Guest User

Untitled

a guest
Oct 10th, 2015
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. <!doctype html>
  2. <!--
  3. This page is shown when the extension button is clicked, because the
  4. "browser_action" field in manifest.json contains the "default_popup" key with
  5. value "popup.html".
  6. -->
  7. <html>
  8. <head>
  9. <title>Getting Started Extension's Popup</title>
  10. <style>
  11. body {
  12. font-family: "Segoe UI", "Lucida Grande", Tahoma, sans-serif;
  13. font-size: 100%;
  14. width: 500px;
  15. height: 500px;
  16. }
  17. #status {
  18. /* avoid an excessively wide status text */
  19. white-space: pre;
  20. text-overflow: ellipsis;
  21. overflow: hidden;
  22. max-width: 400px;
  23. }
  24. </style>
  25.  
  26.  
  27. <!--
  28. - JavaScript and HTML must be in separate files: see our Content Security
  29. - Policy documentation[1] for details and explanation.
  30. -
  31. - [1]: https://developer.chrome.com/extensions/contentSecurityPolicy
  32. -->
  33.  
  34. </head>
  35. <body>
  36. <div id="status"></div>
  37. <input class="typeahead" type="text" name="input" placeholder="Type Here">
  38. <select>
  39. <option value="Rep">Representative</option>
  40. <option value="Senator">Senator</option>
  41. </select>
  42. <button class="sub">submit</button>
  43. <script src='clutch.js'></script>
  44. <script src='beast.js'></script>
  45. <script src='typeahead.js'></script>
  46. </body>
  47. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement