Build the CookieBridge Chrome extension (Manifest V3) with: - Background service worker: cookie monitoring via chrome.cookies.onChanged, WebSocket connection to relay server with auto-reconnect, HTTP polling fallback, device registration and pairing flow - Browser-compatible crypto: libsodium-wrappers-sumo for XChaCha20-Poly1305 encryption, Ed25519 signing, X25519 key exchange (mirrors server's sodium-native API) - Popup UI: device registration, connection status indicator (gray/blue/ green/red), cookie/device/sync stats, one-click current site sync, whitelist quick-add, device pairing with 6-digit code - Options page: server URL config, connection mode (auto/WS/polling), poll interval slider, auto-sync toggle, domain whitelist/blacklist management, paired device list, key export/import, data clearing - Sync engine: LWW conflict resolution with Lamport clocks (same as server), bidirectional cookie sync with all paired peers, echo suppression to prevent sync loops - Badge management: icon color reflects state (gray=not logged in, blue=connected, green=syncing with count, red=error) - Build system: esbuild bundling for Chrome 120+, TypeScript with strict mode, clean type checking Co-Authored-By: Paperclip <noreply@paperclip.ing>
318 lines
4.4 KiB
CSS
318 lines
4.4 KiB
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
width: 340px;
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
|
|
font-size: 14px;
|
|
color: #1f2937;
|
|
background: #ffffff;
|
|
}
|
|
|
|
.view {
|
|
padding: 16px;
|
|
}
|
|
|
|
/* Login View */
|
|
.logo-section {
|
|
text-align: center;
|
|
padding: 24px 0 16px;
|
|
}
|
|
|
|
.logo {
|
|
font-size: 48px;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 20px;
|
|
font-weight: 600;
|
|
color: #111827;
|
|
}
|
|
|
|
.subtitle {
|
|
font-size: 12px;
|
|
color: #6b7280;
|
|
margin-top: 4px;
|
|
}
|
|
|
|
.login-section {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 10px;
|
|
}
|
|
|
|
input[type="text"] {
|
|
width: 100%;
|
|
padding: 10px 12px;
|
|
border: 1px solid #d1d5db;
|
|
border-radius: 8px;
|
|
font-size: 14px;
|
|
outline: none;
|
|
transition: border-color 0.15s;
|
|
}
|
|
|
|
input[type="text"]:focus {
|
|
border-color: #3b82f6;
|
|
box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
|
|
}
|
|
|
|
.link {
|
|
text-align: center;
|
|
font-size: 12px;
|
|
color: #3b82f6;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.link:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
/* Buttons */
|
|
.btn {
|
|
width: 100%;
|
|
padding: 10px 16px;
|
|
border: none;
|
|
border-radius: 8px;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
cursor: pointer;
|
|
transition: all 0.15s;
|
|
}
|
|
|
|
.btn:disabled {
|
|
opacity: 0.5;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.btn-primary {
|
|
background: #3b82f6;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.btn-primary:hover:not(:disabled) {
|
|
background: #2563eb;
|
|
}
|
|
|
|
.btn-secondary {
|
|
background: #f3f4f6;
|
|
color: #374151;
|
|
}
|
|
|
|
.btn-secondary:hover:not(:disabled) {
|
|
background: #e5e7eb;
|
|
}
|
|
|
|
.btn-ghost {
|
|
background: transparent;
|
|
color: #6b7280;
|
|
}
|
|
|
|
.btn-ghost:hover {
|
|
color: #374151;
|
|
}
|
|
|
|
.btn-small {
|
|
width: auto;
|
|
padding: 6px 12px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
/* Header */
|
|
.header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.user-info {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
}
|
|
|
|
.avatar {
|
|
width: 36px;
|
|
height: 36px;
|
|
background: #eff6ff;
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 18px;
|
|
}
|
|
|
|
.user-details {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.name {
|
|
font-weight: 600;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.device-id {
|
|
font-size: 10px;
|
|
color: #9ca3af;
|
|
font-family: monospace;
|
|
}
|
|
|
|
/* Status Badge */
|
|
.status-badge {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
padding: 4px 10px;
|
|
border-radius: 12px;
|
|
font-size: 11px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.status-badge .dot {
|
|
width: 8px;
|
|
height: 8px;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.status-badge.connected {
|
|
background: #ecfdf5;
|
|
color: #059669;
|
|
}
|
|
|
|
.status-badge.connected .dot {
|
|
background: #22c55e;
|
|
}
|
|
|
|
.status-badge.disconnected {
|
|
background: #f3f4f6;
|
|
color: #6b7280;
|
|
}
|
|
|
|
.status-badge.disconnected .dot {
|
|
background: #9ca3af;
|
|
}
|
|
|
|
.status-badge.error {
|
|
background: #fef2f2;
|
|
color: #dc2626;
|
|
}
|
|
|
|
.status-badge.error .dot {
|
|
background: #ef4444;
|
|
}
|
|
|
|
.status-badge.connecting {
|
|
background: #fffbeb;
|
|
color: #d97706;
|
|
}
|
|
|
|
.status-badge.connecting .dot {
|
|
background: #f59e0b;
|
|
}
|
|
|
|
/* Stats Row */
|
|
.stats-row {
|
|
display: flex;
|
|
justify-content: space-around;
|
|
padding: 12px 0;
|
|
margin-bottom: 16px;
|
|
border-top: 1px solid #f3f4f6;
|
|
border-bottom: 1px solid #f3f4f6;
|
|
}
|
|
|
|
.stat {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 2px;
|
|
}
|
|
|
|
.stat-value {
|
|
font-size: 20px;
|
|
font-weight: 700;
|
|
color: #111827;
|
|
}
|
|
|
|
.stat-label {
|
|
font-size: 11px;
|
|
color: #6b7280;
|
|
}
|
|
|
|
/* Actions */
|
|
.actions {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
/* Pairing Dialog */
|
|
.dialog {
|
|
background: #f9fafb;
|
|
border-radius: 10px;
|
|
padding: 16px;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.dialog-title {
|
|
font-weight: 600;
|
|
font-size: 13px;
|
|
margin-bottom: 8px;
|
|
text-align: center;
|
|
}
|
|
|
|
.pairing-code {
|
|
font-size: 32px;
|
|
font-weight: 700;
|
|
font-family: monospace;
|
|
text-align: center;
|
|
letter-spacing: 8px;
|
|
color: #3b82f6;
|
|
padding: 12px;
|
|
}
|
|
|
|
.pairing-input {
|
|
text-align: center;
|
|
font-size: 24px;
|
|
font-weight: 600;
|
|
letter-spacing: 6px;
|
|
font-family: monospace;
|
|
}
|
|
|
|
.dialog-hint {
|
|
font-size: 11px;
|
|
color: #6b7280;
|
|
text-align: center;
|
|
margin-top: 8px;
|
|
}
|
|
|
|
.dialog-actions {
|
|
display: flex;
|
|
gap: 8px;
|
|
margin-top: 12px;
|
|
justify-content: center;
|
|
}
|
|
|
|
/* Footer */
|
|
.footer {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding-top: 12px;
|
|
border-top: 1px solid #f3f4f6;
|
|
}
|
|
|
|
.footer-link {
|
|
font-size: 12px;
|
|
color: #6b7280;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.footer-link:hover {
|
|
color: #3b82f6;
|
|
}
|