// ==UserScript== // @name 51CTO 自定义播放倍数 // @namespace http://tampermonkey.net/ // @version 1.2 // @description 底部增加自定义倍数播放输入,快速填鸭!!! // @author Clay // @match *://edu.51cto.com/* // @icon <$ICON$> // @grant none // @require https://cdn.jsdelivr.net/npm/jquery@3.2.1/dist/jquery.min.js // @license MIT // @downloadURL none // ==/UserScript== (function() { 'use strict'; var input = $(''); input.change(function(e) { if (Number($(this).val()) > 15) { alert("喂! 别太过分!"); return; } if (Number($(this).val()) < 0.1) { return; } // 设置倍数 $(".rate-list").children("li")[0].dataset["rate"] = $(this).val() // 生效参数 $(".rate-list").children("li")[0].click(); }) // 头部添加input $(".Top").append(input); })();