解除网站的禁止复制功能,保留右键菜单
当前为
// ==UserScript==
// @name 解除复制限制
// @description 解除网站的禁止复制功能,保留右键菜单
// @version 1.0
// @author WJ
// @match *://*/*
// @license MIT
// @grant none
// @run-at document-end
// @namespace https://gf.qytechs.cn/users/914996
// ==/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);
})();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址