Greasy Fork is available in English.
解除网站的禁止复制
// ==UserScript==
// @name 解除复制限制
// @description 解除网站的禁止复制
// @version 1.0
// @author WJ
// @license MIT
// @match *://*/*
// @grant GM_addStyle
// @run-at document-start
// @namespace http://greasyfork.icu/users/914996
// ==/UserScript==
(function () {
'use strict';
/* 1. 阻止事件拦截(JS 层面) */
['copy','touchstart','contextmenu','selectstart'].forEach(evt => {
document.addEventListener(evt, e => e.stopImmediatePropagation(), true);
});
/* 2. 覆盖 CSS 禁止选择 */
GM_addStyle('*{user-select:auto!important;}');
})();