您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
去除监听器
当前为
// ==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... })();