// ==UserScript== // @name Rain Classroom Helper // @namespace https://raineggplant.com/ // @version 0.1.0 // @description 优化雨课堂使用体验 // @author RainEggplant // @match *://www.yuketang.cn/web* // @grant GM_addStyle // @require https://cdn.bootcss.com/jquery/1.12.4/jquery.min.js // @homepageURL https://github.com/RainEggplant/rain-classroom-helper // @downloadURL none // ==/UserScript== (function () { 'use strict'; const DEBUG = false; // 调整左边栏样式 GM_addStyle(` .panel { padding-top: 34px !important; } .nav-list { font-size: 18px !important; } .nav-item { height: 50px !important; line-height: 32px !important; } .kecheng, .kejian, .shiti, .geren, .addlink { width: 32px !important; } .left .contact-us { display: block !important; } `); // 调整右边栏样式 GM_addStyle(` .right { width: 300px !important; } .control-panel { padding-top: 32px !important; } .title { font-size: 22px !important; } .page-nav-control { width: 300px !important; } .page-control { padding-top: 15px !important; } .page-nav { padding: unset !important; font-size: 18px !important; } .kecheng, .kejian, .shiti, .geren, .addlink { width: 32px !important; } .print-preview-box { margin: 0px 0 0 !important; } .contact-us { display: none; } `); // 调整中间 iframe 为自适应宽度 GM_addStyle(` .wrapper-inner { width: 92% !important; } .center { width: auto !important; margin-left: 180px !important; margin-right: 300px !important; float: none !important; } .rain-iframe { width: calc(100% - 50px) !important; } `); // 调整布局 waitForKeyElements('div.index-view.none.J_index', function () { // note: you must move div.right instead of div.center, or the sidebar // will lost its funtion $('div.right.fr').insertBefore($('div.center.fl')); }); // 缩小 “体验新版” 尺寸 waitForKeyElements('a.newWebEntry', function () { $('a.newWebEntry') .find('img') .attr('style', 'width: 150px; margin-top: 20px;'); }); // 添加右边栏视频框 GM_addStyle(` #video-iframe { width: 300px; height: 285px; margin-top: 20px; } `); waitForKeyElements('div.control-panel.Absolute-Center', function () { const videoIFrame = '