// ==UserScript== // @name 超星学习通考试粘贴助手 // @namespace 1318346689@qq.com // @version 0.1 // @description 超星学习通考试时可以直接粘贴进输入框 // @author mafei007 // @license MIT // @match https://mooc1-api.chaoxing.com/exam/test/* // @downloadURL none // ==/UserScript== (function() { 'use strict'; var myQuestionId = 'answer' + $("#questionId").val(); var myEditor = UE.getEditor(myQuestionId, {'pasteplain':true}); myEditor.removeListener('beforepaste', myEditor_paste); console.log("可以粘贴了"); // Your code here... })();