// ==UserScript== // @name 解除复制限制 // @description 解除网站的禁止复制功能,保留右键菜单 // @version 1.0 // @author WJ // @match *://*/* // @license MIT // @grant none // @run-at document-start // @namespace https://greasyfork.org/users/914996 // @downloadURL https://update.greasyfork.icu/scripts/542563/%E8%A7%A3%E9%99%A4%E5%A4%8D%E5%88%B6%E9%99%90%E5%88%B6.user.js // @updateURL https://update.greasyfork.icu/scripts/542563/%E8%A7%A3%E9%99%A4%E5%A4%8D%E5%88%B6%E9%99%90%E5%88%B6.meta.js // ==/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); })();