您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
Better zhixue
当前为
// ==UserScript== // @name 更好的智学网 // @namespace http://tampermonkey.net/ // @version 0.3 // @description Better zhixue // @author ObcbO // @license MIT // @match *://*.zhixue.com/* // @icon https://static.zhixue.com/zhixue.ico // @run-at document-start // @grant GM.getValue // @grant GM.setValue // @grant GM_addValueChangeListener // @grant GM_removeValueChangeListener // @grant GM_addElement // @grant GM_addStyle // @grant GM.registerMenuCommand // ==/UserScript== (function() { 'use strict'; var pathname = window.location.pathname; if (pathname == "/activitystudy/web-report/index.html") { // 考试报告 GM_addStyle(` .exam-container { margin: 0px 0px -25px 0px; } .report { margin: 0 auto; width: 100% } .report-content { display: inline-flex; } .report-content .hierarchy { margin-right: 10px; min-width: fit-content; } .report-content .hierarchy .single .subject { width: 80px; } .report-content .hierarchy .single .sub-item { display: contents; } .subject_analysis { min-width: fit-content; } .subject_analysis_legend_div { width: 80%; } `) } })();