mirror of
https://wiilab.wiimart.org/wiimart/wiimart-extension
synced 2025-09-02 19:41:00 +02:00
34 lines
901 B
HTML
34 lines
901 B
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>
|
|
<br> <label>
|
|
<input type="checkbox" id="toggleBGM"> Enable Persistent BGM </label>
|
|
<script src="popup.js"></script>
|
|
</body>
|
|
</html> |