Last active
November 7, 2018 17:10
-
-
Save jangxx/7a0d2022086fe802001edcd4bdab766f to your computer and use it in GitHub Desktop.
Fix the layout on moves.rwth-aachen.de
This file contains 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 MOVES Layout Fix | |
// @namespace https://literalchaos.de | |
// @version 0.1 | |
// @description Disables overflow: hidden on the MOVES main content | |
// @author jangxx | |
// @match https://moves.rwth-aachen.de/teaching/* | |
// @grant none | |
// @downloadURL https://gist.github.com/jangxx/7a0d2022086fe802001edcd4bdab766f/raw/layout_fix.user.js | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
window.addEventListener("load", () => { | |
document.querySelector("#content").style.overflow = "visible"; | |
}) | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment