2026-09-16 21:52:03 +10:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="utf-8">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
|
<meta name="color-scheme" content="light dark">
|
|
|
|
|
<title>Queued Pastes - Tools</title>
|
|
|
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.min.css">
|
|
|
|
|
<link rel="stylesheet" href="./style.css">
|
|
|
|
|
<script type="module" src="./script.js"></script>
|
|
|
|
|
</head>
|
|
|
|
|
<body class="container">
|
|
|
|
|
<header>
|
|
|
|
|
<hgroup>
|
|
|
|
|
<h1>Queued Pastes</h1>
|
|
|
|
|
<p>Paste queued lines one at a time, in order</p>
|
|
|
|
|
</hgroup>
|
|
|
|
|
</header>
|
|
|
|
|
<main>
|
|
|
|
|
<div class="queue-controls">
|
|
|
|
|
<label>
|
|
|
|
|
<input type="checkbox" id="queueSwitch" role="switch">
|
2026-09-16 22:15:56 +10:00
|
|
|
Copy lines
|
2026-09-16 21:52:03 +10:00
|
|
|
</label>
|
|
|
|
|
</div>
|
|
|
|
|
<textarea id="pasteField" rows="10" placeholder="Enter the lines to paste, one per line"></textarea>
|
|
|
|
|
<div class="controls">
|
|
|
|
|
<label>
|
|
|
|
|
<input type="checkbox" id="newlineSwitch" role="switch">
|
|
|
|
|
Include new-line
|
|
|
|
|
</label>
|
|
|
|
|
<div class="controls-right">
|
|
|
|
|
<label>
|
|
|
|
|
<input type="checkbox" id="focusSwitch" role="switch">
|
|
|
|
|
Advance on focus
|
|
|
|
|
</label>
|
|
|
|
|
<button id="advanceBtn" disabled>Advance</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</main>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|