16 lines
575 B
HTML
16 lines
575 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Chrome extension</title>
|
|
<link rel="stylesheet" href="popup.css">
|
|
<script defer src="popup.js"></script>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>Great!</h1>
|
|
<p>Your extension is ready<br>you can go to <a target="_blank" href="https://developer.chrome.com/docs/extensions/">https://developer.chrome.com/docs/extensions/</a> to learn more about chrome extensions</p>
|
|
</div>
|
|
</body>
|
|
</html> |