18 lines
685 B
HTML
18 lines
685 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Tab Tidy</title>
|
|
<style>
|
|
body { font-family: system-ui; width: 320px; padding: 8px; }
|
|
h2 { font-size: 0.85rem; margin: 8px 0 4px; color: #555; display: flex; justify-content: space-between; }
|
|
button { font-size: 0.7rem; cursor: pointer; border: none; background: #eee; padding: 2px 6px; border-radius: 3px; }
|
|
.tab-item { font-size: 0.8rem; padding: 3px 6px; cursor: pointer; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
|
|
.tab-item:hover { background: #f0f0f0; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="groups"></div>
|
|
<script src="src/popup.js"></script>
|
|
</body>
|
|
</html>
|