mirror of
https://github.com/pbakaus/impeccable.git
synced 2026-09-11 21:57:14 +03:00
Adds a Manifest V3 Chrome extension that injects the detector when DevTools opens, with a dedicated panel for browsing findings, a toolbar popup for quick scan/toggle, and per-rule settings synced via chrome.storage. Categorizes anti-patterns into AI slop vs quality issues with visual differentiation (sparkle prefix, panel grouping). Overlay labels are polished with flush positioning, cycling for multi-finding elements, and synchronized hover darkening. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
30 lines
718 B
HTML
30 lines
718 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<link rel="stylesheet" href="popup.css">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<span class="logo">/</span>
|
|
<h1>Impeccable</h1>
|
|
</header>
|
|
|
|
<div class="count-display" id="count-display">
|
|
<span class="count-number" id="count-number">0</span>
|
|
<span class="count-label" id="count-label">anti-patterns</span>
|
|
</div>
|
|
|
|
<div class="actions">
|
|
<button class="btn btn-primary" id="btn-scan">Scan page</button>
|
|
<button class="btn btn-secondary" id="btn-toggle">Hide overlays</button>
|
|
</div>
|
|
|
|
<footer>
|
|
<a href="https://impeccable.style" id="link-site">impeccable.style</a>
|
|
</footer>
|
|
|
|
<script src="popup.js"></script>
|
|
</body>
|
|
</html>
|