document.oncontextmenu = null;
document.addEventListener('contextmenu', function(e) {
e.stopPropagation();
}, true);
if (window.location.href.includes('/common/spio.jsp')) {
document.addEventListener('mousedown', function(e) {
const panel = e.target.closest('div#spioPanel.x-plain');
if (panel) {
e.stopImmediatePropagation();
e.stopPropagation();
}
}, true); // true 表示在捕获阶段处理
}