Skip to content

Instantly share code, notes, and snippets.

@jsun969
Last active August 24, 2024 03:43
Show Gist options
  • Select an option

  • Save jsun969/a281131ee6f111d0d776faa98bebcb27 to your computer and use it in GitHub Desktop.

Select an option

Save jsun969/a281131ee6f111d0d776faa98bebcb27 to your computer and use it in GitHub Desktop.
UofA Remove myuni max width
// ==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