// ==UserScript==
// @name NodeSeek 帖子后台打开
// @version 1.7.3
// @description 修复状态显示和点击失效问题
// @match https://www.nodeseek.com/*
// @grant GM_setValue
// @grant GM_getValue
// @grant GM_registerMenuCommand
// @license MIT
// @author Gh0st&Claude
// @namespace https://gf.qytechs.cn/users/118214
// ==/UserScript==
(function() {
'use strict';
// 增强配置
const CONFIG = {
DEFAULT_ENABLED: true,
DEFAULT_STATUS_VISIBLE: true,
DEBOUNCE_DELAY: 100,
ALLOWED_DOMAINS: ['www.nodeseek.com'],
STATUS_ID: 'ns-bg-open-status-v2',
LINK_SELECTORS: [
'a.thread-title:not([href^="#"])',
'.thread-list-title a:not([href^="#"])',
'.post-title a:not([href^="#"])',
'.topic-title a:not([href^="#"])',
'[data-type="post-link"]'
]
};
// 创建状态元素(强制置顶)
const createStatus = () => {
let status = document.getElementById(CONFIG.STATUS_ID);
if (!status) {
status = document.createElement('div');
status.id = CONFIG.STATUS_ID;
Object.assign(status.style, {
position: 'fixed',
bottom: '20px',
right: '20px',
padding: '10px 15px',
borderRadius: '15px',
fontSize: '14px',
fontWeight: 'bold',
zIndex: '2147483647',
cursor: 'pointer',
boxShadow: '0 2px 10px rgba(0,0,0,0.2)',
transition: 'opacity 0.3s',
display: 'none'
});
document.documentElement.appendChild(status);
}
return status;
};
// 状态管理
const statusElement = createStatus();
let isEnabled = GM_getValue('bgEnabled', CONFIG.DEFAULT_ENABLED);
let isVisible = GM_getValue('statusVisible', CONFIG.DEFAULT_STATUS_VISIBLE);
// 更新状态显示(强制样式)
const updateStatus = () => {
statusElement.textContent = isEnabled ? '后台打开:ON' : '后台打开:OFF';
statusElement.style.backgroundColor = isEnabled ? '#4CAF50' : '#F44336';
statusElement.style.color = '#FFFFFF';
statusElement.style.display = isVisible ? 'block' : 'none';
// 防止被覆盖
statusElement.style.pointerEvents = 'auto';
statusElement.style.opacity = '1';
};
// 事件处理(增强版)
const handleClick = (event) => {
if (!isEnabled) return;
const link = event.target.closest(CONFIG.LINK_SELECTORS.join(','));
if (!link || !link.href) return;
try {
const url = new URL(link.href);
if (CONFIG.ALLOWED_DOMAINS.includes(url.hostname)) {
window.open(url, '_blank', 'noopener');
event.preventDefault();
event.stopImmediatePropagation();
}
} catch (e) {
console.error('链接处理失败:', e);
}
};
// 事件绑定(立即执行)
const bindEvents = () => {
document.removeEventListener('click', handleClick, true);
document.addEventListener('click', handleClick, {
capture: true,
passive: false
});
};
// DOM观察器(优化版)
const observer = new MutationObserver(() => {
bindEvents();
updateStatus();
});
// 初始化
const init = () => {
// 初始设置
GM_registerMenuCommand('切换后台模式', () => {
isEnabled = !isEnabled;
GM_setValue('bgEnabled', isEnabled);
updateStatus();
});
GM_registerMenuCommand('切换状态显示', () => {
isVisible = !isVisible;
GM_setValue('statusVisible', isVisible);
updateStatus();
});
// 永久显示保障
statusElement.addEventListener('click', () => {
isEnabled = !isEnabled;
GM_setValue('bgEnabled', isEnabled);
updateStatus();
});
// 观察整个文档
observer.observe(document, {
subtree: true,
childList: true,
attributes: false
});
// 立即执行绑定
bindEvents();
updateStatus();
// 定时状态检查
setInterval(updateStatus, 1000);
};
init();
})();