【2022/9/29 更新版】解除菁优网复制和右键限制
// ==UserScript==
// @name 菁优网解除复制和右键限制工具
// @version 0.2
// @namespace https://codezhangborui.eu.org
// @description 【2022/9/29 更新版】解除菁优网复制和右键限制
// @author CodeZhangBorui
// @match http://www.jyeoo.com/*/ques/detail/*
// @match https://www.jyeoo.com/*/ques/detail/*
// @match http://www.jyeoo.com/*/report/detail/*
// @match https://www.jyeoo.com/*/report/detail/*
// @icon https://www.jyeoo.com/favicon.ico
// @grant GM_registerMenuCommand
// @grant GM_notification
// @homepage https://github.io/CodeZhangBorui/Jyeoo-Print-Processer
// @license MIT
// ==/UserScript==
(function() {
'use strict';
var username = document.getElementsByClassName('user')[0].innerText;
console.log("%c菁优网解除复制和右键限制工具 %cBy CodeZhangBorui Version 0.2\n%c菁优网用户 %s,欢迎您使用本脚本", 'font-size: large; font-family: "微软雅黑"', 'font-size: large; font-family: "Consolas"', 'font-size: large; font-family: "微软雅黑"', username);
document.body.oncopy = function() {
console.log("菁优网解除复制和右键限制工具提示:复制成功!");
}
document.body.oncontextmenu = function() {
console.log("菁优网解除复制和右键限制工具提示:打开右键菜单成功!");
}
console.log("✅ 程序已就绪!");
})();