// ==UserScript== // @name 已访问链接样式修改 - 控制面板 // @version 2026.9.9 // @description 自定义已访问链接样式 // @tag 链接 工具 自定义 下划线 颜色 标记 UI // @author zzz妄炁 & AI // @match *://*/* // @run-at document-end // @grant GM_registerMenuCommand // @grant GM_setValue // @grant GM_getValue // @compatible chrome // @compatible firefox // @compatible safari // @namespace https://scriptcat.org/zh-CN/search // @supportURL https://scriptcat.org/zh-CN/script-show-page/2822 // @icon https://img.soogif.com/6QlDQPIFsYakXFhmBt1a02vNk9G5ecYf.gif // @license MIT // ==/UserScript== (function() { 'use strict'; if (window.__visitedLinkScriptInited) return; window.__visitedLinkScriptInited = true; /* ========== 兼容性 Polyfill ========== */ if (typeof requestIdleCallback !== 'function') { window.requestIdleCallback = function(cb, options) { const start = Date.now(); return setTimeout(function() { cb({ didTimeout: false, timeRemaining: function() { return Math.max(0, 50 - (Date.now() - start)); }}); }, options?.timeout || 1); }; window.cancelIdleCallback = function(id) { clearTimeout(id); }; } if (typeof CSS === 'undefined' || !CSS.escape) { window.CSS = window.CSS || {}; CSS.escape = function(str) { return String(str).replace(/[^a-zA-Z0-9_-]/g, function(c) { return '\\' + c; }); }; } /* ========== 常量配置 ========== */ const MAX_LINKS = 5000; const CLEANUP_INTERVAL = 30000; const DEBOUNCE_SAVE = 300; const DEBOUNCE_STYLE = 150; const CHUNK_SIZE = 200; const underlineLabels = { 'solid': '实线', 'dashed': '虚线', 'wavy': '波浪线', 'double': '双线', 'dotted': '点状线', 'none': '无' }; // 已移除「立即清除」选项:该功能与面板的「清除所有访问记录」按钮重复 const dayLabels = { 1: '保留 1 天', 7: '保留 7 天', 30: '保留 30 天', 90: '保留 90 天' }; /* ========== 状态管理 ========== */ const settings = { color: GM_getValue('linkColor', '#FF0000'), underline: GM_getValue('underlineType', 'solid'), weight: GM_getValue('linkWeight', '400'), glassAlpha: GM_getValue('glassAlpha', 0.7), blurEnabled: GM_getValue('blurEnabled', true) }; let autoCleanEnabled = GM_getValue('autoCleanEnabled', false); let autoCleanDays = GM_getValue('autoCleanDays', 7); let lastCleanInfo = { time: GM_getValue('lastCleanTime', 0), count: GM_getValue('lastCleanCount', 0) }; /* ========== 启动时校验存储值(防旧数据/异常数据破坏面板) ========== */ // 顺带覆盖旧版本 autoCleanDays = 0(立即清除)的迁移 (function validateSettings() { if (!/^#[0-9a-fA-F]{6}$/.test(settings.color)) { settings.color = '#FF0000'; GM_setValue('linkColor', settings.color); } if (!underlineLabels[settings.underline]) { settings.underline = 'solid'; GM_setValue('underlineType', settings.underline); } const w = parseInt(settings.weight, 10); if (!(w >= 100 && w <= 900)) { settings.weight = '400'; GM_setValue('linkWeight', '400'); } else { settings.weight = String(w); } const a = parseFloat(settings.glassAlpha); if (isNaN(a) || a < 0.3 || a > 0.8) { settings.glassAlpha = 0.7; GM_setValue('glassAlpha', 0.7); } else { settings.glassAlpha = a; } if (typeof settings.blurEnabled !== 'boolean') { settings.blurEnabled = true; GM_setValue('blurEnabled', true); } if (!dayLabels[autoCleanDays]) { autoCleanDays = 7; GM_setValue('autoCleanDays', 7); } })(); // 核心数据结构:Map 查找 O(1),替代原数组的线性查找 let visitedLinksMap = new Map(); // url -> { time } let customVisitedMap = new Map(); // key -> { time } let dragTarget = null; let dragTime = 0; let observer = null; let hrefObserver = null; let styleElement = null; const shadowStyleMap = new Map(); let saveTimer = null; let styleUpdateTimer = null; let panelOverlay = null; let touchStartX = 0, touchStartY = 0; let touchHandledTarget = null; let touchHandledTime = 0; let touchHandledTimer = null; let routeRetryTimer = null; let saveWeightTimer = null; let saveAlphaTimer = null; let saveColorTimer = null; const processedNodeSet = new WeakSet(); // 批处理残留节点与调度状态 let pendingNodes = []; let pendingFlushScheduled = false; // 移除节点深扫描节流 let lastRemovalDeepScan = 0; /* ========== 数据持久化 ========== */ function initVisitedLinks() { try { let raw = GM_getValue('visitedLinks', '[]'); if (typeof raw === 'string') raw = JSON.parse(raw); if (!Array.isArray(raw)) raw = []; visitedLinksMap.clear(); raw.forEach(item => { if (typeof item === 'string') { visitedLinksMap.set(item, { time: Date.now() }); } else if (item.url) { visitedLinksMap.set(item.url, { time: item.time || Date.now() }); } }); let customRaw = GM_getValue('customVisitedKeys', '[]'); if (typeof customRaw === 'string') customRaw = JSON.parse(customRaw); if (!Array.isArray(customRaw)) customRaw = []; customVisitedMap.clear(); customRaw.forEach(item => { if (typeof item === 'string') { if (isStableKey(item)) customVisitedMap.set(item, { time: Date.now() }); } else if (item.key && isStableKey(item.key)) { customVisitedMap.set(item.key, { time: item.time || Date.now() }); } }); } catch (_) { visitedLinksMap.clear(); customVisitedMap.clear(); } } function isStableKey(key) { return key && (key.startsWith('id:') || key.startsWith('dh:') || key.startsWith('du:')); } function forceSave() { try { const linksArray = Array.from(visitedLinksMap.entries()) .map(([url, data]) => ({ url, time: data.time })); const customArray = Array.from(customVisitedMap.entries()) .map(([key, data]) => ({ key, time: data.time })); GM_setValue('visitedLinks', JSON.stringify(linksArray)); GM_setValue('customVisitedKeys', JSON.stringify(customArray)); GM_setValue('lastCleanTime', lastCleanInfo.time); GM_setValue('lastCleanCount', lastCleanInfo.count); } catch (_) {} } function saveVisitedLinksDebounced() { clearTimeout(saveTimer); saveTimer = setTimeout(forceSave, DEBOUNCE_SAVE); } /* ========== 清理逻辑 ========== */ function removeVisitedClassFromAll() { try { document.querySelectorAll('.visited-link').forEach(el => el.classList.remove('visited-link')); shadowStyleMap.forEach((data, root) => { if (root.host && root.host.isConnected) { root.querySelectorAll('.visited-link').forEach(el => el.classList.remove('visited-link')); } }); } catch (e) { console.warn('[已访问链接样式] 清理出错', e); } } // 自动清理:仅滚动策略(按天数过滤),立即清除请使用面板按钮 function applyAutoClean() { try { if (!autoCleanEnabled) return; const threshold = Date.now() - autoCleanDays * 86400000; let removedCount = 0; for (const [url, data] of visitedLinksMap) { if (data.time < threshold) { visitedLinksMap.delete(url); removedCount++; } } for (const [key, data] of customVisitedMap) { if (data.time < threshold) { customVisitedMap.delete(key); removedCount++; } } if (removedCount > 0) { lastCleanInfo = { time: Date.now(), count: removedCount }; document.querySelectorAll('.visited-link').forEach(el => { if (el.tagName === 'A' && el.href) { if (!visitedLinksMap.has(el.href)) el.classList.remove('visited-link'); } else { const key = el.dataset?.visitedId; if (key && !customVisitedMap.has(key)) el.classList.remove('visited-link'); } }); } enforceLimits(); updateStatsInPanel(); } catch (e) { console.warn('[已访问链接样式] 自动清理出错', e); } } function enforceLimits() { while (visitedLinksMap.size > MAX_LINKS) { const firstKey = visitedLinksMap.keys().next().value; visitedLinksMap.delete(firstKey); } while (customVisitedMap.size > MAX_LINKS) { const firstKey = customVisitedMap.keys().next().value; customVisitedMap.delete(firstKey); } } /* ========== 元素标识 ========== */ function getVisitedKeyFromElement(el) { if (!el || el.nodeType !== 1) return null; if (el.dataset && el.dataset.visitedId) return el.dataset.visitedId; if (el.hasAttribute('data-href')) return 'dh:' + el.getAttribute('data-href'); if (el.hasAttribute('data-url')) return 'du:' + el.getAttribute('data-url'); if (el.id) return 'id:' + el.id; return null; } function ensureVisitedIdAttribute(el) { if (!el || el.tagName === 'A') return; if (el.dataset && el.dataset.visitedId) return; const key = getVisitedKeyFromElement(el); if (key) { try { el.dataset.visitedId = key; } catch (_) {} } } function isClickableElement(el) { if (!el || el.nodeType !== 1) return false; if (el.closest('.glass-overlay, .glass-card, #visited-links-style, #glass-dialog-styles')) return false; const tag = el.tagName.toUpperCase(); if (['A', 'BUTTON', 'INPUT', 'SELECT', 'TEXTAREA', 'IMG', 'LABEL'].includes(tag)) return true; if (el.hasAttribute('onclick') || el.hasAttribute('download') || el.getAttribute('role') === 'button' || el.getAttribute('role') === 'link' || el.hasAttribute('data-href') || el.hasAttribute('data-url')) return true; return false; } function markElementVisited(el) { if (!el || !el.classList) return; if (!el.classList.contains('visited-link')) el.classList.add('visited-link'); if (el.tagName !== 'A') ensureVisitedIdAttribute(el); } /* ========== 添加访问记录 ========== */ function addVisitedLink(url) { if (!url) return; const existing = visitedLinksMap.get(url); if (existing) { existing.time = Date.now(); visitedLinksMap.delete(url); visitedLinksMap.set(url, existing); // 重新插入放到末尾(最新) } else { visitedLinksMap.set(url, { time: Date.now() }); } enforceLimits(); } function addCustomKey(key) { if (!key) return; const existing = customVisitedMap.get(key); if (existing) { existing.time = Date.now(); customVisitedMap.delete(key); customVisitedMap.set(key, existing); } else { customVisitedMap.set(key, { time: Date.now() }); } enforceLimits(); } function markLinkAsVisited(link) { if (!link) return; if (link.tagName === 'A' && link.href) { addVisitedLink(link.href); markElementVisited(link); saveVisitedLinksDebounced(); return; } const key = getVisitedKeyFromElement(link); if (key) { addCustomKey(key); markElementVisited(link); saveVisitedLinksDebounced(); } else if (isClickableElement(link)) { markElementVisited(link); // 临时标记,不存储 } } /* ========== 拖拽处理 ========== */ function handleDragLink() { if (!dragTarget) return; const link = dragTarget.closest('a') || dragTarget.closest('[data-href], [data-url], [role="link"], [role="button"], [onclick], [download]'); if (link) handleInteraction(link); dragTarget = null; dragTime = 0; } /* ========== 样式生成与注入 ========== */ function getStyleText() { const underlineLine = settings.underline === 'none' ? 'none' : 'underline'; const underlineStyle = settings.underline === 'none' ? 'none' : settings.underline; return ` html body a.visited-link[href], html body button.visited-link, html body .visited-link { color: ${settings.color} !important; text-decoration-line: ${underlineLine} !important; text-decoration-style: ${underlineStyle} !important; text-decoration-color: inherit !important; font-weight: ${settings.weight} !important; } `; } function updateDocumentStyle() { const css = getStyleText(); if (!styleElement || !styleElement.isConnected) { if (styleElement) styleElement.remove(); styleElement = document.createElement('style'); styleElement.id = 'visited-links-style'; (document.head || document.documentElement).appendChild(styleElement); } if (styleElement.textContent !== css) styleElement.textContent = css; } function injectShadowStyle(shadowRoot) { try { if (shadowStyleMap.has(shadowRoot)) return; const style = document.createElement('style'); style.setAttribute('data-visited-style', 'true'); style.textContent = getStyleText(); shadowRoot.appendChild(style); const shadowObserver = new MutationObserver((mutations) => { const nodes = []; for (const m of mutations) { if (m.type === 'childList') { m.addedNodes.forEach(n => nodes.push(n)); } } if (nodes.length) applyStylesToNewNodes(nodes); }); shadowObserver.observe(shadowRoot, { childList: true, subtree: true }); shadowStyleMap.set(shadowRoot, { style, observer: shadowObserver }); } catch (e) { console.warn('[已访问链接样式] 注入shadow样式失败', e); } } function cleanupShadowStyleMap() { const toDelete = []; for (const [root, data] of shadowStyleMap) { if ((root.host && !root.host.isConnected) || !data.style.parentNode) { if (data.observer) data.observer.disconnect(); toDelete.push(root); } } toDelete.forEach(root => shadowStyleMap.delete(root)); } function updateAllShadowStyles() { const css = getStyleText(); cleanupShadowStyleMap(); for (const [, data] of shadowStyleMap) { if (data.style.textContent !== css) data.style.textContent = css; } } function updateStylesDebounced() { clearTimeout(styleUpdateTimer); styleUpdateTimer = setTimeout(() => { updateDocumentStyle(); updateAllShadowStyles(); }, DEBOUNCE_STYLE); } /* ========== 样式应用(分片优化) ========== */ function hasValidBody() { return !!(document.body && document.body.childNodes.length > 0); } function processElement(el) { if (el.nodeType !== 1) return; if (el.tagName === 'A' && el.href) { if (visitedLinksMap.has(el.href)) markElementVisited(el); } else if (el.dataset && el.dataset.visitedId) { if (customVisitedMap.has(el.dataset.visitedId)) markElementVisited(el); } else if (isClickableElement(el)) { const key = getVisitedKeyFromElement(el); if (key && customVisitedMap.has(key)) markElementVisited(el); } } function applyVisitedStyles() { if (!hasValidBody()) return; const processChunk = (elements, index) => { const end = Math.min(index + CHUNK_SIZE, elements.length); for (let i = index; i < end; i++) { processElement(elements[i]); } if (end < elements.length) { requestIdleCallback(() => processChunk(elements, end), { timeout: 100 }); } }; const allElements = document.querySelectorAll( 'a[href], [data-href], [data-url], button, [role="button"], [role="link"], [onclick], [download]' ); requestIdleCallback(() => processChunk(allElements, 0)); } /* ---- 修复:残留节点调度消费(原版填入 pendingNodes 后无人处理) ---- */ function schedulePendingFlush() { if (pendingFlushScheduled) return; pendingFlushScheduled = true; requestIdleCallback(() => { pendingFlushScheduled = false; flushPendingNodes(); }, { timeout: 300 }); } function flushPendingNodes() { if (pendingNodes.length === 0) return; const nodes = pendingNodes.splice(0, CHUNK_SIZE); applyStylesToNewNodes(nodes); if (pendingNodes.length) schedulePendingFlush(); } function applyStylesToNewNodes(nodes) { try { let count = 0; for (let i = 0; i < nodes.length; i++) { const node = nodes[i]; if (node.nodeType !== 1) continue; if (processedNodeSet.has(node)) continue; processedNodeSet.add(node); count++; processElement(node); if (node.querySelectorAll) { node.querySelectorAll('a[href], [data-href], [data-url], button, [role="button"], [role="link"], [onclick], [download]').forEach(processElement); } if (count >= CHUNK_SIZE && i < nodes.length - 1) { // 用 concat 而非 unshift(...spread),防止大数组超出调用栈 pendingNodes = nodes.slice(i + 1).concat(pendingNodes); schedulePendingFlush(); break; } } } catch (e) { console.warn('[已访问链接样式] 应用样式出错', e); } } function handleInteraction(target) { if (!target || !target.closest) return; if (target.closest('#glass-dialog-styles, .glass-overlay, .glass-card, #visited-links-style')) return; const link = target.closest('a'); if (link && link.href) { markLinkAsVisited(link); return; } const clickable = target.closest('a, button, img, input, label, [role="button"], [role="link"], [onclick], [download], [data-href], [data-url]'); if (clickable && isClickableElement(clickable)) markLinkAsVisited(clickable); } /* ========== 颜色转换 ========== */ function hsvToHex(h, s, v) { const i = Math.floor(h / 60), f = h / 60 - i; const p = v * (1 - s), q = v * (1 - f * s), t = v * (1 - (1 - f) * s); let r, g, b; switch (i % 6) { case 0: r = v; g = t; b = p; break; case 1: r = q; g = v; b = t; break; case 2: r = p; g = v; b = t; break; case 3: r = p; g = q; b = v; break; case 4: r = t; g = p; b = v; break; case 5: r = v; g = p; b = q; break; } const toHex = x => Math.round(x * 255).toString(16).padStart(2, '0'); return `#${toHex(r)}${toHex(g)}${toHex(b)}`; } function hexToHsv(hex) { hex = hex.replace('#', ''); const r = parseInt(hex.substring(0,2),16)/255, g = parseInt(hex.substring(2,4),16)/255, b = parseInt(hex.substring(4,6),16)/255; const max = Math.max(r,g,b), min = Math.min(r,g,b), delta = max - min; let h = 0, s = 0, v = max; if (delta !== 0) { s = delta / max; if (r === max) h = ((g - b) / delta) % 6; else if (g === max) h = (b - r) / delta + 2; else h = (r - g) / delta + 4; h = Math.round(h * 60); if (h < 0) h += 360; } return { h, s, v }; } /* ========== 全局 UI 样式(.vlx 作用域隔离,防止污染宿主页面同名类) ========== */ function injectGlobalDialogStyles() { const css = ` .vlx.glass-overlay { position: fixed; top:0; left:0; width:100%; height:100%; background: rgba(0,0,0,0.3); backdrop-filter: blur(var(--vlx-blur, 12px)); -webkit-backdrop-filter: blur(var(--vlx-blur, 12px)); display: flex; align-items: center; justify-content: center; z-index: 2147483647; opacity:0; pointer-events: none; transition: opacity 0.25s ease; } .vlx.glass-overlay.show { opacity:1; pointer-events: auto; } .vlx .glass-card { background: rgba(255,255,255, var(--vlx-alpha, 0.7)); border-radius: 20px; box-shadow: 0 25px 45px rgba(0,0,0,0.15); border: 1px solid rgba(255,255,255,0.5); backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px); padding: 28px 26px; width: 440px; max-width: 94vw; max-height: 85vh; overflow-y: auto; position: relative; color: #2c2c2c; font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; transform: scale(0.92); transition: transform 0.25s ease; box-sizing: border-box; user-select: none; } .vlx.glass-overlay.show .glass-card { transform: scale(1); } .vlx .card-header { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1.5px solid rgba(255,255,255,0.8); cursor: move; } .vlx .card-header img { width: 32px; height: 32px; border-radius: 8px; object-fit: cover; pointer-events: none; } .vlx .card-header h2 { margin:0; font-size:20px; font-weight:600; color:#1a1a1a; pointer-events: none; } .vlx .close-btn { position: absolute; top:14px; right:18px; background: rgba(255,255,255,0.6); border: none; font-size:20px; cursor:pointer; color:#666; width:32px; height:32px; border-radius:50%; display:flex; align-items:center; justify-content:center; transition: background 0.2s, color 0.2s; z-index: 2; } .vlx .close-btn:hover { background: rgba(0,0,0,0.08); color:#222; } .vlx .close-btn:focus-visible { outline: 2px solid #4a90e2; outline-offset: 2px; } .vlx .setting-row { display: flex; align-items: center; gap:12px; margin-bottom:15px; flex-wrap: wrap; } .vlx .setting-row label { min-width:70px; font-size:14px; color:#444; font-weight:500; } .vlx .preview-btn { flex:1; display:flex; align-items:center; justify-content:center; gap:10px; padding:10px 16px; background:rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.7); border-radius:12px; cursor: pointer; font-size:14px; color:#333; transition: all 0.2s; } .vlx .preview-btn:hover { background:rgba(255,255,255,0.8); border-color:#4a90e2; } .vlx .preview-btn:focus-visible { outline: 2px solid #4a90e2; outline-offset: 2px; } .vlx .weight-row { display:flex; align-items:center; gap:10px; flex:1; } .vlx .weight-row input[type="range"] { flex:1; height:8px; -webkit-appearance: none; background: rgba(255,255,255,0.45); border-radius:8px; outline:none; border:1px solid rgba(255,255,255,0.6); backdrop-filter: blur(4px); transition: background 0.2s; } .vlx .weight-row input[type="range"]:hover { background:rgba(255,255,255,0.65); } .vlx .weight-row input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width:26px; height:26px; background: white; border-radius:50%; box-shadow: 0 2px 10px rgba(0,0,0,0.15), 0 0 0 2px rgba(255,255,255,0.5); cursor: pointer; transition: transform 0.15s; } .vlx .weight-row input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.1); box-shadow: 0 4px 14px rgba(0,0,0,0.2), 0 0 0 3px rgba(74,144,226,0.3); } .vlx .weight-value { min-width:45px; text-align:center; font-weight:700; font-size:16px; } .vlx .danger-btn { background: rgba(255,255,255,0.55); border: 1px solid rgba(229,62,62,0.6); color:#d63031; padding:12px 18px; border-radius:14px; font-size:15px; font-weight:500; cursor:pointer; width:100%; transition: all 0.2s; margin-top:10px; } .vlx .danger-btn:hover { background:#d63031; color:white; border-color:#d63031; } .vlx .danger-btn:focus-visible { outline: 2px solid #d63031; outline-offset: 2px; } .vlx .confirm-buttons { display:flex; gap:14px; justify-content:flex-end; margin-top:24px; } .vlx .confirm-buttons button { padding:12px 24px; border-radius:12px; font-size:15px; font-weight:500; cursor:pointer; border:1px solid rgba(255,255,255,0.5); background:rgba(255,255,255,0.45); color:#333; transition: all 0.2s; } .vlx .confirm-buttons button:hover { background:rgba(255,255,255,0.8); } .vlx .confirm-buttons button.confirm-yes { background:#d63031; color:white; border-color:#d63031; } .vlx .confirm-buttons button.confirm-yes:hover { background:#c0262c; } .vlx .picker-area { display: flex; flex-direction: column; gap: 10px; margin: 12px 0 20px; } .vlx .picker-row { display: flex; gap: 12px; align-items: stretch; } .vlx .sv-panel { position: relative; flex: 1; min-height: 160px; border-radius: 12px; overflow: hidden; cursor: crosshair; border: 1px solid rgba(255,255,255,0.7); box-shadow: 0 4px 10px rgba(0,0,0,0.05); } .vlx .sv-panel .sv-bg { position: absolute; top:0; left:0; width:100%; height:100%; background: linear-gradient(to top, #000, transparent), linear-gradient(to right, #fff, transparent); } .vlx .sv-panel .sv-cursor { position: absolute; width:16px; height:16px; border:2px solid white; border-radius:50%; box-shadow: 0 0 0 1px rgba(0,0,0,0.3); pointer-events: none; transform: translate(-50%, -50%); } .vlx .hue-slider { position: relative; width:100%; height:18px; border-radius:9px; background: linear-gradient(to right, red, yellow, lime, cyan, blue, magenta, red); cursor: pointer; border: 1px solid rgba(255,255,255,0.7); box-shadow: 0 4px 10px rgba(0,0,0,0.05); } .vlx .hue-slider .hue-thumb { position: absolute; top:-5px; width:28px; height:28px; background: white; border-radius:50%; box-shadow: 0 2px 8px rgba(0,0,0,0.3); pointer-events: none; transform: translateX(-50%); transition: left 0.05s linear; } .vlx .color-preview-block { display: flex; flex-direction: column; align-items: center; gap: 8px; width: 80px; } .vlx .color-preview-block .preview-box { width:100%; height:36px; border-radius:9px; border:1px solid rgba(255,255,255,0.8); box-shadow: 0 2px 6px rgba(0,0,0,0.08); } .vlx .color-preview-block input[type="text"] { width:100%; padding:6px 4px; background:rgba(255,255,255,0.45); border:1px solid rgba(255,255,255,0.7); border-radius:8px; font-size:12px; text-align:center; outline:none; box-sizing: border-box; } .vlx .underline-options { display: flex; flex-wrap: wrap; gap: 8px; margin: 15px 0; } .vlx .underline-option { flex:1 1 auto; display:flex; align-items:center; justify-content:center; padding:10px 14px; background:rgba(255,255,255,0.5); border:1px solid rgba(255,255,255,0.7); border-radius:10px; cursor:pointer; font-size:14px; transition: all 0.15s; } .vlx .underline-option:hover { background:rgba(255,255,255,0.8); border-color:#4a90e2; } .vlx .underline-option.active { background:#4a90e2; color:white; border-color:#4a90e2; font-weight:600; } .vlx .underline-option:focus-visible { outline: 2px solid #4a90e2; outline-offset: 2px; } .vlx .switch { position: relative; display: inline-block; width: 48px; height: 26px; flex-shrink: 0; } .vlx .switch input { opacity: 0; width: 0; height: 0; } .vlx .slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #ccc; transition: .3s; border-radius: 26px; border: 1px solid rgba(255,255,255,0.7); } .vlx .slider:before { position: absolute; content: ""; height: 20px; width: 20px; left: 2px; bottom: 2px; background-color: white; transition: .3s; border-radius: 50%; box-shadow: 0 1px 4px rgba(0,0,0,0.2); } .vlx input:checked + .slider:before { left: auto; right: 2px; transform: none; } .vlx input:checked + .slider { background-color: #4a90e2; } .vlx .stats-row { display: flex; justify-content: space-between; background: rgba(255,255,255,0.5); border-radius:10px; padding:8px 12px; margin-bottom:14px; font-size:13px; } .vlx .clean-info { font-size:12px; color:#555; margin-top:4px; } @media (max-width: 480px) { .vlx .glass-card { padding: 18px 14px; width: 96vw; max-height: 90vh; } .vlx .card-header h2 { font-size: 18px; } .vlx .setting-row { flex-direction: column; align-items: stretch; width: 100%; } .vlx .setting-row label { min-width: auto; margin-bottom: 4px; } .vlx .preview-btn { width: 100%; flex: none; box-sizing: border-box; } .vlx .weight-row { width: 100%; } .vlx .picker-area { margin: 8px 0 10px; gap: 8px; } .vlx .picker-row { flex-direction: column; align-items: stretch; gap: 10px; } .vlx .sv-panel { width: 100%; min-height: 150px; max-height: 220px; } .vlx .color-preview-block { flex-direction: row; width: 100%; gap: 10px; } .vlx .color-preview-block .preview-box { width: 56px; height: 36px; } .vlx .color-preview-block input[type="text"] { flex: 1; } .vlx .hue-slider { margin-top: 4px; } .vlx .underline-options { flex-direction: column; width: 100%; } .vlx .underline-option { flex: 1 0 auto; width: 100%; box-sizing: border-box; } } `; let style = document.getElementById('glass-dialog-styles'); if (!style) { style = document.createElement('style'); style.id = 'glass-dialog-styles'; (document.head || document.documentElement).appendChild(style); } style.textContent = css; } /* ========== 面板拖拽 ========== */ function makeDraggable(card, headerSelector = '.card-header') { const header = card.querySelector(headerSelector); if (!header) return; let startX, startY, startLeft, startTop, dragging = false; const onStart = (e) => { if (e.target.closest('button, input, select, textarea, .close-btn')) return; e.preventDefault(); const rect = card.getBoundingClientRect(); startLeft = rect.left; startTop = rect.top; startX = e.touches ? e.touches[0].clientX : e.clientX; startY = e.touches ? e.touches[0].clientY : e.clientY; card.style.position = 'fixed'; card.style.left = startLeft + 'px'; card.style.top = startTop + 'px'; card.style.margin = '0'; card.style.transform = 'none'; dragging = false; }; const onMove = (e) => { if (!startX) return; const clientX = e.touches ? e.touches[0].clientX : e.clientX; const clientY = e.touches ? e.touches[0].clientY : e.clientY; const dx = clientX - startX, dy = clientY - startY; if (!dragging && Math.abs(dx) < 5 && Math.abs(dy) < 5) return; dragging = true; e.preventDefault(); card.style.left = (startLeft + dx) + 'px'; card.style.top = (startTop + dy) + 'px'; }; const onEnd = () => { startX = null; if (!dragging) { card.style.position = ''; card.style.left = ''; card.style.top = ''; card.style.margin = ''; card.style.transform = ''; } document.removeEventListener('mousemove', onMove); document.removeEventListener('mouseup', onEnd); document.removeEventListener('touchmove', onMove); document.removeEventListener('touchend', onEnd); }; header.addEventListener('mousedown', (e) => { onStart(e); document.addEventListener('mousemove', onMove); document.addEventListener('mouseup', onEnd); }); header.addEventListener('touchstart', (e) => { onStart(e); document.addEventListener('touchmove', onMove, { passive: false }); document.addEventListener('touchend', onEnd); }, { passive: false }); } /* ========== 工具 ========== */ function escapeHtml(text) { const div = document.createElement('div'); div.textContent = String(text); return div.innerHTML; } /* ========== 面板交互 ========== */ // 修复:在面板范围内查询,避免页面存在同 ID 元素时写错目标 function updateStatsInPanel() { if (!panelOverlay) return; const recordedEl = panelOverlay.querySelector('#recorded-count'); const pageLinkEl = panelOverlay.querySelector('#page-link-count'); const cleanInfoEl = panelOverlay.querySelector('#clean-info'); if (recordedEl) recordedEl.textContent = visitedLinksMap.size + customVisitedMap.size; if (pageLinkEl) { try { pageLinkEl.textContent = document.querySelectorAll('a[href]').length; } catch (_) {} } if (cleanInfoEl) { if (lastCleanInfo.time) { const date = new Date(lastCleanInfo.time); cleanInfoEl.textContent = `上次清理:${date.toLocaleString()},移除 ${lastCleanInfo.count} 条`; } else { cleanInfoEl.textContent = '尚未执行清理'; } } } function showDayPicker(currentDays, onSelect) { const overlay = document.createElement('div'); overlay.className = 'glass-overlay vlx show'; const options = [1, 7, 30, 90]; overlay.innerHTML = `
${escapeHtml(message)}