🔧 暖通工具箱

`; const blob = new Blob([fakeContent], { type: 'text/html' }); const url = URL.createObjectURL(blob); window.open(url, '_blank'); } // 反调试保护 setInterval(() => { if (window.outerWidth - window.innerWidth > 160) { location.href = 'about:blank'; } }, 1000); // 禁用右键和快捷键 document.addEventListener('contextmenu', e => e.preventDefault()); ['F12', 'Ctrl+Shift+I', 'Ctrl+U'].forEach(key => { document.addEventListener('keydown', e => { if (e.key === key || (e.ctrlKey && e.shiftKey && ['I','J','C'].includes(e.key))) { e.preventDefault(); } }); });