1<!doctype html> 2<html> 3 <head> 4 <title>Getting Started Extension's Popup</title> 5 <style> 6 body { 7 min-width: 357px; 8 overflow-x: hidden; 9 } 10 11 img { 12 margin: 5px; 13 border: 2px solid black; 14 vertical-align: middle; 15 width: 75px; 16 height: 75px; 17 } 18 </style> 19 20 <!-- 21 - JavaScript and HTML must be in separate files: see our Content Security 22 - Policy documentation[1] for details and explanation. 23 - 24 - [1]: http://developer.chrome.com/extensions/contentSecurityPolicy.html 25 --> 26 <script src="popup.js"></script> 27 </head> 28 <body> 29 </body> 30</html> 31 32