-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
31 lines (26 loc) · 808 Bytes
/
popup.html
File metadata and controls
31 lines (26 loc) · 808 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
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>Email Finder</title>
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div id="app">
<h2 id="pageTitle">Email Finder</h2>
<div id="meta"></div>
<div id="list"></div>
<div id="actions">
<button id="refreshBtn" type="button">Refresh</button>
</div>
</div>
<footer class="footer">
<span><a href="https://github.com/OstinUA/HTML-Email-parser" target="_blank">Open Source project on GitHub · Find emails on the page</a></span>
</footer>
<script src="shared/email-utils.js"></script>
<script src="popup/render.js"></script>
<script src="popup/state.js"></script>
<script src="popup.js"></script>
</body>
</html>