// ==UserScript== // @name 郑大远程html5视频倍速播放插件 // @namespace QQ:2535688890 // @version 1.1 // @description try to take over the world! // @require http://libs.baidu.com/jquery/2.0.0/jquery.min.js // @author QQ:2535688890 // @match http://cod2018.zzu.edu.cn/codplay/*/*/ // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; if ($('.c').length == 1) { $('.c').append('
倍速播放:

'); $('.Rate').css({ "background-color": "antiquewhite" }); $('.Rate').append(''); $('.Rate').append(''); $('.Rate').append(''); $('.Rate').append(''); $('.Rate').append(''); $('.Rate').append(''); $('.Rate button').css({ "width": "15%", "background-color": "#35de0b", "border-color": "aqua", "font-size": "30px", "border-width": "4px", "margin": "5px" }); } if ($('.video_small').length == 1) { $('.video_small').append('
倍速播放:

'); $('.Rate').css({ "background-color": "antiquewhite" }); $('.Rate').append(''); $('.Rate').append(''); $('.Rate').append(''); $('.Rate').append(''); $('.Rate').append(''); $('.Rate').append(''); $('.Rate button').css({ "width": "46%", "background-color": "#35de0b", "border-color": "aqua", "font-size": "30px", "border-width": "4px", "margin": "5px" }); } })();