expand courses in MTV automatically
// ==UserScript==
// @name MTV Autoexpand
// @namespace http://tampermonkey.net/
// @version 1.0.0
// @license MIT
// @description expand courses in MTV automatically
// @author tippfehlr
// @match https://mtv.math.kit.edu/
// @icon https://kit.edu/favicon.ico
// @grant none
// ==/UserScript==
document.querySelectorAll("button.show-assignments[aria-expanded=false]").forEach(b => b.click());