NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name ITLaoQi Course Page Cleaner // @namespace http://tampermonkey.net/ // @version 0.1 // @description 清理IT老齐课程页面的冗余内容 // @author Your name // @match *://*.itlaoqi.com/chapter.html* // @license MIT // ==/UserScript== (function () { 'use strict'; // 等待页面加载完成 window.addEventListener('load', function () { // 移除头部导航 const header = document.querySelector('.el-header'); if (header) { header.remove(); } // 移除顶部margin const main = document.querySelector('.el-main'); if (main) { main.style.marginTop = '0'; } // 添加自定义样式 const style = document.createElement('style'); style.textContent = ` .el-main { padding-top: 0 !important; } #video-box { margin-top: 10px !important; } `; document.head.appendChild(style); }); })();