-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpopup.html
More file actions
36 lines (31 loc) · 772 Bytes
/
popup.html
File metadata and controls
36 lines (31 loc) · 772 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!doctype html>
<!--
This page is shown when the extension button is clicked, because the
"browser_action" field in manifest.json contains the "default_popup" key with value "popup.html".
-->
<html>
<head>
<title>Medifill</title>
<style>
body {
font-family: "Segoe UI", "Lucida Grande", Tahoma, sans-serif;
font-size: 100%;
}
.center {
justify-content: center;
align-items: center;
border: 3px solid green;
}
</style>
<!--
- JavaScript and HTML must be in separate files
-->
<script src="popup.js"></script>
</head>
<body>
<div class="center">
<button><img src="checkmark.png" alt="Italian Trulli"></button>
<h3 style="text-align: center;">Click to Autofill</h3>
</div>
</body>
</html>