wiimart-extension/popup.html
2025-05-06 20:49:00 -04:00

33 lines
825 B
HTML

<!-- popup.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Extension</title>
<style>
body {
font-family: Arial, sans-serif;
padding: 10px;
}
button {
margin: 5px;
padding: 10px;
}
#cleared {
margin-top: 10px;
color: green;
}
</style>
</head>
<body>
<h1>My Extension</h1>
<button id="clearTrace">Clear Trace</button>
<button id="clearPoints">Clear Points</button>
<div id="cleared"></div>
<label>
<input type="checkbox" id="toggleFont"> Enable Custom Font
</label>
<script src="popup.js"></script>
</body>
</html>