mirror of
https://github.com/nmasur/dotfiles
synced 2026-02-09 00:19:47 +00:00
26 lines
454 B
HTML
26 lines
454 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>History Exporter</title>
|
|
<style>
|
|
body {
|
|
width: 200px;
|
|
text-align: center;
|
|
font-family: sans-serif;
|
|
}
|
|
button {
|
|
margin-top: 10px;
|
|
padding: 10px;
|
|
font-size: 16px;
|
|
cursor: pointer;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>History Exporter</h1>
|
|
<button id="export-button">Export Now</button>
|
|
<p id="status"></p>
|
|
<script src="popup.js"></script>
|
|
</body>
|
|
</html>
|