您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
展开答案解析
// ==UserScript== // @name 百度教育展开答案解析 // @namespace http://tampermonkey.net/ // @version 2024-05-21 // @description 展开答案解析 // @author AN drew // @match https://easylearn.baidu.com/edu-page/tiangong/* // @require https://lib.baomitu.com/jquery/3.5.0/jquery.min.js // @grant GM_addStyle // @license MIT // ==/UserScript== (function() { 'use strict'; GM_addStyle(`.vip-banner-cont{display:none!important} .feedback-icon{display:none!important} .exercise-new-dialog-mask{display:none!important} .overlay{display:none!important} .everyone-search-box{display:none!important} .vip-card-warp{display:none!important} .doc-preview{display:none!important} #questionVideo{display:none!important} .business-el-line{display:none!important} `); //查看答案 let t1 =setInterval(function(){ if($('.toogle-btn').length>0) { $('.toogle-btn').click(); setTimeout(function(){ $('.exercise-btn-4').click(); },500); //clearInterval(t1); } },1000); //查看答案 let t2 =setInterval(function(){ if($('.more-text').length>0) { $('.more-text').click(); setTimeout(function(){ $('.dan-btn').click(); },500); clearInterval(t2); } },1000) //展开解析 let t3 =setInterval(function(){ if($('.expand-btn').length>0) { $('.expand-btn').click(); clearInterval(t3); } },1000) })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址