// ==UserScript== // @name 超星学习通考试解除禁止复制、禁止粘贴 // @namespace http://tampermonkey.net/ // @version 0.19 // @description 🔥超星学习通考试解除禁止复制、禁止粘贴🔥 // @author CHENL // @include *chaoxing.com/exam/* // @include *chaoxing.com/exam-ans/* // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; $(function() { setTimeout(()=>{ $("body").removeAttr("onselectstart"); $("html").css("user-select", "unset"); Object.entries(UE.instants).forEach(item=>{ item[1].removeListener('beforepaste',editorPaste) }) }, 1000); }) })();