解除超星自动暂停播放的限制并添加自动播放下一集的功能
< Commentaires sur #### Chaoxing
对于防止暂停的比较粗暴的解决方案
// ==UserScript==// @name #### 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}}}})();
Connectez-vous pour poster une réponse.
对于防止暂停的比较粗暴的解决方案