51ixuejiao辅助

try to take over the world!

// ==UserScript==
// @name         51ixuejiao辅助
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        http://www.51ixuejiao.com/*
// @grant        none
// ==/UserScript==
$(document).ready(function(){
    setTimeout(function(){
        $(window).off("blur");
        document.onselectstart = "";
        document.oncontextmenu = "";
        console.log("over");
    },500)
})