Greasy Fork is available in English.

菁优网解除复制和右键限制工具

【2022/9/29 更新版】解除菁优网复制和右键限制

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==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("✅ 程序已就绪!");
})();