驾考宝典练习页去除多余div内容

驾考宝典练习页扩展

// ==UserScript==
// @name         驾考宝典练习页去除多余div内容
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  驾考宝典练习页扩展
// @author       niushuai233
// @match        https://www.jiakaobaodian.com/mnks/exercise/*
// @require      https://cdn.bootcdn.net/ajax/libs/jquery/3.6.0/jquery.min.js
// @icon         https://www.google.com/s2/favicons?sz=64&domain=jiakaobaodian.com
// @grant        none
// @license      Apache 2
// ==/UserScript==

(function() {
    'use strict';
    $(".layout-header").remove();
    $(".layout-footer").remove();
    $(".com-side-car-sales-rank").remove();
    $(".com-jiaxiao-list-random").remove();
    $(".common-link").remove();
    $(".mnks-exercise").css("min-height", "86vh");
    $(".container").css("min-height", "88vh");
    // Your code here...
})();