26 lines
523 B
HTML
26 lines
523 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
body {
|
|
font-family: sans-serif;
|
|
min-width: 220px;
|
|
padding: 10px;
|
|
}
|
|
button {
|
|
width: 100%;
|
|
margin-top: 5px;
|
|
padding: 10px;
|
|
font-size: 15px;
|
|
cursor: pointer;
|
|
background-color: cornflower;
|
|
color: black;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<button id="open">Open SmugMug Images in individual tabs</button>
|
|
<button id="download">Download all SmugMug images</button>
|
|
<script src="popup.js"></script>
|
|
</body>
|
|
</html>
|