Greasy Fork is available in English.
功能单一,脚本简单
// ==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 } })();