ITLaoQi Course Page Cleaner

清理IT老齐课程页面的冗余内容

// ==UserScript==
// @name         ITLaoQi Course Page Cleaner
// @namespace    http://tampermonkey.net/
// @version      0.5
// @description  清理IT老齐课程页面的冗余内容
// @author       Tandy
// @match      https://www.itlaoqi.com/*
// @license      MIT
// ==/UserScript==

(function () {
  'use strict';

  const style = document.createElement('style');
  style.textContent = `
    .el-header {
      display: none !important;
    }
    .el-main {
      margin-top: 0 !important;
      padding-top: 0 !important;
    }
    #video-box {
      margin-top: 10px !important;
    }
  `;
  document.head.appendChild(style);
})();