jjm2473 / Mooc.ChaoxingUnlock.video_pause

// ==UserScript==
// @name         Mooc.ChaoxingUnlock.video_pause
// @namespace    https://openuserjs.org/user/jjm2473
// @version      0.1
// @description  Course unlock
// @author       jjm2473
// @match        http://mooc1-1.chaoxing.com/ananas/modules/video/index.html?v=*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    setTimeout(function(){
    		top.document.onfocusin =  null;
			top.document.onfocusout = null;
			top.onfocus = window.onfocus = null;
			top.onblur = window.onblur = null;
       },500);
})();