NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==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); })();