-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
42 lines (38 loc) · 844 Bytes
/
options.html
File metadata and controls
42 lines (38 loc) · 844 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>
<head>
<meta charset="utf-8">
<title>Amazon Return Notes - Options</title>
<style>
body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
sans-serif;
font-size: 14px;
padding: 16px;
}
h1 {
font-size: 18px;
margin-bottom: 12px;
}
button {
font-size: 14px;
padding: 6px 12px;
cursor: pointer;
}
#status {
margin-top: 8px;
font-size: 12px;
color: #555;
}
</style>
</head>
<body>
<h1>Amazon Return Notes</h1>
<p>
Export all stored return notes and metadata to a CSV file.
</p>
<button id="exportCsv">Export to CSV</button>
<div id="status"></div>
<script src="options.js"></script>
</body>
</html>