您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
面试题移除左侧空白,右侧真题答案居中,答案自动展开,精简内容;刷题答案解析删除视频等元素,移动答题卡
当前为
// ==UserScript== // @name 粉笔刷题排版优化,答案自动展开 // @namespace http://greasyfork.icu/zh-CN/scripts/465487 // @version 2.0.1 // @description 面试题移除左侧空白,右侧真题答案居中,答案自动展开,精简内容;刷题答案解析删除视频等元素,移动答题卡 // @author yingming006 // @match *://www.fenbi.com/* // @match *://spa.fenbi.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=fenbi.com // @grant GM_addStyle // @license GPL-3.0 License // ==/UserScript== (function() { let css = `#app-report-solution .fb-collpase-bottom{position:fixed;right:0 !important;bottom:0 !important;width:440px !important;}.zhenti-body-left.zhenti-body-part.bg-color-gray-light5{display:none !important;}fb-expand{display:none !important;}.zhenti-body{width:1180px !important;margin:auto !important;}.question-body{height:auto !important;}.questions-container{padding-left:0 !important;}.question-container{position:static !important;}.question-content{width:100% !important;}.zhenti-container.bg-color-gray-light3.ng-star-inserted{position:static !important;}.reference-detail.bg-color-gray-light3{max-height:fit-content !important;opacity:1 !important;}.reference-btn{display:none !important;}.member-title{display:none !important;}.member-content-sections{display:none !important;}.member-open-big{display:none !important;}.accessory-container.member.last-one{max-height:fit-content !important;position:static !important;}.member-section{background:inherit !important;margin-left:0 !important;margin-bottom:0 !important;overflow:hidden !important;width:auto !important;border-radius:10px !important;}.accessory-container:last-child{display:none !important;}app-report-capacity-change{display:none !important;}app-production-rec-nav{display:none !important;}.solu-list-item.video-item.m-b-24{display:none !important;}.solu-list-item.font-color-gray-mid.m-b-14{display:none !important;}` GM_addStyle(css) })();