超星鼠标监听禁用

禁用鼠标监听,避免鼠标移出网页后视频自动暂停

// ==UserScript==
// @name         超星鼠标监听禁用
// @namespace    http://tampermonkey.net/
// @version      v0.1
// @description  禁用鼠标监听,避免鼠标移出网页后视频自动暂停
// @author       沧浪之水
// @match        https://mooc1.chaoxing.com/mycourse/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=chaoxing.com
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    document.addEventListener('mouseout', function(event) {
  event.preventDefault();
  event.stopPropagation();
});
})();