-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpopup.html
38 lines (38 loc) · 1.04 KB
/
popup.html
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
37
38
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
<link rel="stylesheet" href="popup.css" />
<base target="_blank" />
<script src="popup.js" type="module"></script>
</head>
<body>
<main>
<h1></h1>
<ol>
<li>Click <strong>Screenshot</strong> to download the results.</li>
<li>Click <strong>Share</strong> and attach the screenshot.</li>
</ol>
<div class="wrapper">
<img
src="./assets/blowfish.png"
width="64"
height="64"
alt="A blowfish, the Project Fugu logo."
/>
<button id="download" type="button"></button>
<button id="share" type="button"></button>
</div>
<p></p>
<ul class="parent"></ul>
<footer>
<span id="made-by"></span>
<a href="https://twitter.com/tomayac">@tomayac</a>.
<span id="source-code"></span>
<a href="https://github.com/tomayac/project-fugu-api-detector">GitHub</a
>.
</footer>
</main>
</body>
</html>