// ==UserScript== // @name 解除复制限制 (优化版) // @description 解除网站的禁止复制功能,保留右键菜单 // @version 1.2 // @author WJ (优化建议:DeepSeek-R1) // @match *://*/* // @license MIT // @grant none // @namespace https://greasyfork.org/users/914996 // @downloadURL none // ==/UserScript== (function() { // 高效CSS注入 - 现代浏览器兼容 const style = document.createElement('style'); style.textContent = `* { user-select: auto !important; }`; document.head.appendChild(style); // 仅阻止选择限制事件 - 保留右键菜单功能 document.addEventListener('selectstart', e => { e.stopImmediatePropagation(); }, true); // 捕获阶段处理确保优先执行 })();