Files
autotrader-marker/popup.html
T
tony eabab39210 Initial commit: AutoTrader Marker Firefox extension
Mark AutoTrader listings as 'not wanted' on both search results and detail
pages. Includes the unlisted signing / auto-update pipeline (web-ext +
dist/updates.json polled by Firefox).

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-22 12:33:45 +00:00

36 lines
973 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>AutoTrader Marker</title>
<link rel="stylesheet" href="popup.css" />
</head>
<body>
<header>
<h1>AutoTrader Marker</h1>
<p class="sub" id="count"></p>
</header>
<section>
<label class="toggle">
<input type="checkbox" id="hideToggle" />
<span>Hide dismissed listings</span>
</label>
<p class="hint">When off, dismissed cars are faded so you can still see them.</p>
</section>
<section class="actions">
<button id="exportBtn" type="button">Export JSON</button>
<button id="importBtn" type="button">Import JSON</button>
<input type="file" id="importFile" accept="application/json" hidden />
<button id="clearBtn" type="button" class="danger">Clear all</button>
</section>
<footer>
<p id="status" class="status"></p>
</footer>
<script src="popup.js"></script>
</body>
</html>