脚本:禁止抄题解

2025.2.16 by Xuancheng_Mao

// ==UserScript==
// @name         禁止ctj
// @namespace    http://tampermonkey.net/
// @version      2025-02-16
// @description  阻止你的谔谔行为。
// @author       Xuancheng_Mao
// @match        https://www.luogu.com.cn/problem/solution/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=luogu.com.cn
// @grant        none
// ==/UserScript==

(function() {
        document.addEventListener('contextmenu', function(event) {
            event.preventDefault();
        });

        document.addEventListener('selectstart', function(event) {
            event.preventDefault();
        });

})();