Last active
August 24, 2024 03:43
-
-
Save jsun969/a281131ee6f111d0d776faa98bebcb27 to your computer and use it in GitHub Desktop.
UofA Remove myuni max width
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Remove myuni max width | |
| // @namespace https://jsun.lol/ | |
| // @version 2024-03-03 | |
| // @description lol | |
| // @author jsun969 & chatgpt | |
| // @match https://myuni.adelaide.edu.au/* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=adelaide.edu.au | |
| // @grant none | |
| // ==/UserScript== | |
| (function() { | |
| const wrapperEle = document.querySelector('#wrapper.ic-Layout-wrapper'); | |
| if (wrapperEle) { | |
| wrapperEle.style.maxWidth = 'none'; | |
| } | |
| })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment