Wider ANU Timetable

Makes the ANU Timetable wider

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==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'));
        }
    });
})();