Files

16 lines
486 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
body { width: 200px; padding: 10px; font-family: sans-serif; }
.status-on { color: green; font-weight: bold; }
button { width: 100%; padding: 10px; cursor: pointer; }
</style>
</head>
<body>
<h3>Scanner Bridge</h3>
<button id="arm-scanner">Arm Scanner</button>
<p id="status" class="status-on" style="display:none;">Ready to Scan...</p>
<script src="popup.js"></script>
</body>
</html>