解除超星自动暂停播放的限制并添加自动播放下一集的功能
< 脚本Fuck Chaoxing的反馈
对于防止暂停的比较粗暴的解决方案
// ==UserScript== // @name Fuck Chaoxing MouseOutEvent // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You // @match *://*.chaoxing.com/ananas/modules/video/index.html* // @grant none // ==/UserScript== (function() { 'use strict'; window.Ext.EventManager.mouseLeaveRe = {'test': (e) => {if (/mouseout/.test(e)){throw new Error}}} })();
登录以发表回复。
对于防止暂停的比较粗暴的解决方案