Greasy Fork

允许学习通后台播放

去除监听器

目前为 2022-03-22 提交的版本。查看 最新版本

// ==UserScript==
// @name         允许学习通后台播放
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  去除监听器
// @author       LikeJson<
// @match        https://mooc1.chaoxing.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=chaoxing.com
// @grant        none
// @license GNU AGPLv3
// ==/UserScript==

(function() {
    'use strict';

    window.onload = function(){
    let eventList = ["mouseout", "mousemove", "mousedown", "mouseover", "mouseup", "dragover", "touchmove"];

    for ( let type of eventList){
        window.addEventListener(type, function (event) {
            event.stopPropagation();
        }, true);
}
    }
    // Your code here...
})();