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