您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Makes the ANU Timetable wider
// ==UserScript== // @name Wider ANU Timetable // @description Makes the ANU Timetable wider // @description:en Makes the ANU Timetable wider, so that you can read all of the entries better. // @namespace http://doi.ac // @match https://mytimetable.anu.edu.au/even/timetable/* // @match https://mytimetable.anu.edu.au/odd/timetable/* // @version 0.2 // @license GPLv3 // ==/UserScript== (function() { 'use strict'; window.addEventListener('load', function() { var header = document.getElementById('outer-header'); var container = document.querySelector('.aplus-container'); if (header) { header.style.setProperty('max-width', 'none', 'important'); } if (container) { container.style.setProperty('max-width', 'none', 'important'); } // Force reflow by reading a layout property if (header || container) { var dummy = (header || container).offsetHeight; // Optionally, dispatch a resize event to help trigger any additional layout adjustments window.dispatchEvent(new Event('resize')); } }); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址