-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
42 lines (34 loc) · 916 Bytes
/
popup.html
File metadata and controls
42 lines (34 loc) · 916 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
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="popup.css">
<title>__MSG_appName__</title>
</head>
<body>
<header>
<h1>__MSG_appName__</h1>
</header>
<main>
<section class="usage-section">
<h2>__MSG_usage__</h2>
<ol>
<li>__MSG_li1__</li>
<li>__MSG_li2__</li>
<li>__MSG_li3__</li>
</ol>
</section>
<section class="database-section">
<h2>__MSG_database__</h2>
<div id="tbox">
<table></table>
</div>
<div id="bbox">
<button id="save" type="button">__MSG_save__</button>
</div>
</section>
</main>
<script src="popup.js"></script>
</body>
</html>