您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
驾考宝典练习页扩展
// ==UserScript== // @name 驾考宝典练习页去除多余div内容 // @namespace http://tampermonkey.net/ // @version 0.3 // @description 驾考宝典练习页扩展 // @author niushuai233 // @match https://www.jiakaobaodian.com/mnks/exercise/* // @match https://www.jiakaobaodian.com/mnks/exam/* // @require https://update.greasyfork.org/scripts/494892/1376206/jquery-351.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... })();