Advertisement
Guest User

Untitled

a guest
May 27th, 2015
251
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.99 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.       }
  15.       #status {
  16.         /* avoid an excessively wide status text */
  17.         white-space: pre;
  18.         text-overflow: ellipsis;
  19.         overflow: hidden;
  20.         max-width: 400px;
  21.       }
  22.     </style>
  23.  
  24.     <!--
  25.      - JavaScript and HTML must be in separate files: see our Content Security
  26.      - Policy documentation[1] for details and explanation.
  27.      -
  28.      - [1]: https://developer.chrome.com/extensions/contentSecurityPolicy
  29.     -->
  30.     <script src="popup.js"></script>
  31.   </head>
  32.   <body>
  33.     <div id="status"></div>
  34.     <img id="image-result" hidden>
  35.   </body>
  36. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement