法宣考试解除限制

解除法宣在线考试的复制拖放限制

// ==UserScript==
// @name         法宣考试解除限制
// @namespace    http://www.faxuanyun.com/
// @version      0.1
// @description  解除法宣在线考试的复制拖放限制
// @author       You
// @match        http://*.faxuanyun.com/*
// @grant        none
// @license     xianzhi0520
// ==/UserScript==

(function() {
    'use strict';
    document.onselectstart = document.onbeforecopy = document.oncontextmenu = document.onmousedown = document.onkeydown = function(){return true;};void(document.body.onmouseup=''); void(document.body.onselectstart=''); void(document.body.onmouseup=''); void(document.body.oncopy='');
    console.log('解除限制 start')
    // Your code here...
})();