17 lines
387 B
HTML
17 lines
387 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<link rel="stylesheet" href="popup.css">
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<button id="capture-page">Send Page</button>
|
|
<button id="capture-selection">Send Selection</button>
|
|
<button id="retry">Retry Pending</button>
|
|
<p id="status"></p>
|
|
</main>
|
|
<script src="popup.js"></script>
|
|
</body>
|
|
</html>
|