// ==UserScript== // @name 解除复制限制 // @description 解除一些网站的禁止复制 // @version 1.0 // @author WJ // @match *://*/* // @license MIT // @grant none // @namespace https://greasyfork.org/users/914996 // @downloadURL none // ==/UserScript== (function() { // 创建并注入CSS样式(高效覆盖所有元素) const style = document.createElement('style'); style.textContent = ` *, *::before, *::after { user-select: auto !important; -webkit-user-select: auto !important; -moz-user-select: auto !important; -ms-user-select: auto !important; } `; document.head.appendChild(style); // 阻止常见限制事件(精简版) ['selectstart', 'contextmenu'].forEach(event => { document.addEventListener(event, e => { e.stopImmediatePropagation(); }, true); // 在捕获阶段处理 }); })();