Greasy Fork is available in English.

林木教育解除答题页面复制限制

功能单一,脚本简单

您查看的为 2020-10-28 提交的版本。查看 最新版本

// ==UserScript==
// @name         林木教育解除答题页面复制限制
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  功能单一,脚本简单
// @author       zishiluojin
// @include      *://wx.linmujiaoyu.com/test/*
// ==/UserScript==

(function() {
    'use strict';
    window.onload=function(){
        document.onselectstart=null
        document.oncontextmenu=null
        document.onkeydown=null
    }
})();