This commit is contained in:
2026-08-05 21:39:14 -05:00
commit b8d7e732d5
13 changed files with 1791 additions and 0 deletions

74
popup.css Normal file
View File

@@ -0,0 +1,74 @@
body {
margin: 0;
font-family: Arial, sans-serif;
background: #111319;
color: #e9ecf1;
}
.popup {
width: 380px;
max-height: 520px;
padding: 12px;
box-sizing: border-box;
}
.popup-header {
display: flex;
align-items: center;
justify-content: space-between;
gap: 8px;
}
.popup-header h1 {
margin: 0;
font-size: 15px;
}
button {
border: 1px solid #2f66ff;
background: #2f66ff;
color: white;
border-radius: 6px;
cursor: pointer;
padding: 6px 9px;
font-size: 12px;
}
button.secondary {
border-color: #445;
background: #1e2230;
}
.status {
margin: 12px 0;
color: #adb6cb;
font-size: 12px;
}
.url-list {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
gap: 8px;
}
.url-item {
border: 1px solid #2a2f40;
border-radius: 8px;
background: #171b26;
padding: 8px;
}
.url-text {
margin: 0 0 8px;
font-size: 11px;
word-break: break-all;
color: #c6d0e5;
}
.actions {
display: flex;
gap: 8px;
}